-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauto_readme.py
67 lines (46 loc) · 1.89 KB
/
auto_readme.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import sys
from langchain_openai import ChatOpenAI
from langchain_community.document_loaders import DirectoryLoader, TextLoader
from langchain_core.prompts import PromptTemplate
from langchain_core.output_parsers import StrOutputParser
from langchain_community.document_loaders import PythonLoader, UnstructuredMarkdownLoader
import os
template = """I will provide you with a list of files which forms a directory, please generate
a README file for the directory.
Key information to know:
* Examples will be in example.py
* The project owner can be contacted at [email protected]
* The project is licensed under the Apache license
* The project is written in Python
* The project is a library and can be installed via pip
* The actual class files are inside the {project_name} directory
{context}
"""
def format_docs(docs: list[dict]):
return "\n\n".join(["{0}:\n\n{1}".format(d.metadata["source"], d.page_content) for d in docs])
prompt = PromptTemplate.from_template(template)
llm = ChatOpenAI(model="gpt-4o")
if __name__ == "__main__":
project_name = sys.argv[1]
os.chdir(project_name)
retriever = DirectoryLoader(project_name, glob="*.py", loader_cls=PythonLoader,
recursive=True).load()
docs = []
for doc in retriever:
docs.append(doc)
retriever = DirectoryLoader(project_name, glob="README.md", recursive=True,
loader_cls=UnstructuredMarkdownLoader).load()
for doc in retriever:
docs.append(doc)
if os.path.exists("pyproject.toml"):
doc_loader = TextLoader("pyproject.toml").load()
for doc in doc_loader:
docs.append(doc)
chain = (
prompt
| llm
| StrOutputParser()
)
result = chain.invoke(input={"project_name": project_name, "context": format_docs(docs)})
open("README.md", "w").write(result)
os.chdir("..")