An Agent designed to offer an intelligent approach for generating project documentation.
Project description
ไธญๆ | Background | Features | Quick Start | Future Work | Supported Language | Citation
๐ค Introduction
RepoAgent is an Open-Source project driven by Large Language Models(LLMs) that aims to provide an intelligent way to document projects. It is designed to be a handy tool for developers who need to organize their code and cooperate with teammates.
๐พ Background
In the realm of computer programming, the significance of comprehensive project documentation, including detailed explanations for each Python file, cannot be overstated. Such documentation serves as the cornerstone for understanding, maintaining, and enhancing the codebase. It provides essential context and rationale for the code, making it easier for current and future developers to comprehend the purpose, functionality, and structure of the software. It not only facilitates current and future developers in grasping the project's purpose and structure but also ensures that the project remains accessible and modifiable over time, significantly easing the learning curve for new team members.
Traditionally, creating and maintaining software documentation demanded significant human effort and expertise, a challenge for small teams without dedicated personnel. The introduction of Large Language Models (LLMs) like GPT has transformed this, enabling AI to handle much of the documentation process. This shift allows human developers to focus on verification and fine-tuning, greatly reducing the manual burden of documentation.
๐ Our goal is to create an intelligent document assistant that helps people read and understand repositories and generate documents, ultimately helping people improve efficiency and save time.
๐ชญ Features
- ๐ค Automatically detects changes in Git repositories, tracking additions, deletions, and modifications of files.
- ๐ Independently analyzes the code structure through AST, generating documents for individual objects.
- ๐ Accurate identification of inter-object invocation relationships, enriching the global perspective of document content.
- ๐ Seamlessly replaces Markdown content based on changes, maintaining consistency in documentation.
- ๐ Executes multi-threaded concurrent operations, enhancing the efficiency of document generation.
- ๐ญ Offer a sustainable, automated documentation update method for team collaboration.
๐ฆ Installation
First, ensure that your machine is installed with Python version 3.9 or higher.
$ python --version
python 3.11.4
Next, clone the project, create a virtual environment, and install dependencies within this environment.
cd RepoAgent
conda create -n RepoAgent python=3.11.4
conda activate RepoAgent
pip install -r requirements.txt
๐ Quick Start
Configuring RepoAgent
First, configure the OpenAI API parameters in the config.yml file. For details on obtaining these, please refer to OpenAI API.
In the config.yml
file, configure other parameters like OpenAI API, the destination repository path, document language, and so on:
api_keys:
gpt-3.5-turbo-16k:
- api_key: sk-XXXX
base_url: https://example.com/v1/
api_type: azure
api_version: XXX
engine: GPT-35-Turbo-16k
# you can use any kwargs supported by openai.ChatCompletion here
- api_key: sk-xxxxx
organization: org-xxxxxx
model: gpt-3.5-turbo-16k
...
default_completion_kwargs:
model: gpt-4
temperature: 0.2
request_timeout: 60
repo_path: /path/to/your/repo
project_hierarchy_path: .project_hierarchy_path.json # The paths of the global structure information json file
markdown_docs_path: /Markdown_Docs # The folder in the root directory of your target repository to store the documentation.
ignore_list: ["ignore_file1.py", "ignore_file2.py", "ignore_directory"] # Ignore some py files or folders that you don't want to generate documentation for by giving relative paths in ignore_list.
language: en # Two-letter language codes (ISO 639-1 codes), e.g. `language: en` for English. Refer to Supported Language for more languages.
Run RepoAgent
Enter the root directory of RepoAgent and type the following command in the terminal:
python repo_agent/runner.py
If it's your first time generating documentation for the target repository, RepoAgent will automatically create a JSON file maintaining the global structure information and a folder named Markdown_Docs in the root directory of the target repository for storing documents.
The paths of the global structure information json file and the documentation folder can be configured in config.yml
.
Once you have initially generated the global documentation for the target repository, or if the project you cloned already contains global documentation information, you can then seamlessly and automatically maintain internal project documentation with your team by configuring the pre-commit hook in the target repository!
Configuring the Target Repository
RepoAgent currently supports generating documentation for projects, which requires some configuration in the target repository.
First, ensure that the target repository is a git repository and has been initialized.
git init
Install pre-commit in the target repository to detect changes in the git repository.
pip install pre-commit
Create a file named .pre-commit-config.yaml
in the root directory of the target repository. An example is as follows:
repos:
- repo: local
hooks:
- id: repo-agent
name: RepoAgent
entry: python path/to/your/repo_agent/runner.py
language: system
# You can specify the file types that trigger the hook, but currently only python is supported.
types: [python]
For specific configuration methods of hooks, please refer to pre-commit. After configuring the yaml file, execute the following command to install the hook.
pre-commit install
In this way, each git commit will trigger the RepoAgent's hook, automatically detecting changes in the target repository and generating corresponding documents. Next, you can make some modifications to the target repository, such as adding a new file to the target repository, or modifying an existing file. You just need to follow the normal git workflow: git add, git commit -m "your commit message", git push The RepoAgent hook will automatically trigger at git commit, detect the files you added in the previous step, and generate corresponding documents.
After execution, RepoAgent will automatically modify the staged files in the target repository and formally submit the commit. After the execution is completed, the green "Passed" will be displayed, as shown in the figure below:
โ Future Work
- Identification and maintenance of parent-child relationship hierarchy structure between objects
- Implement Black commit
- Bi-direct reference Construct Bi-directional reference topology
- chat with repo Chat with the repository by giving code and document at the same time
- Generate README.md automatically combining with the global documentation
- Multi-language support Support more languages like Java, C or C++, etc.
- Local model support like Llama, chatGLM, Qianwen, etc.
- Automatically generate better visualizations such as Gitbook
๐บ๐ณ Supported Language
Set the target language with the two-letter language codes (ISO 639-1 codes), Click on the 'Languages List' section below to expand the list of supported languages.
Languages List
Flag | Code | Language |
---|---|---|
๐ฌ๐ง | en | English |
๐ช๐ธ | es | Spanish |
๐ซ๐ท | fr | French |
๐ฉ๐ช | de | German |
๐จ๐ณ | zh | Chinese |
๐ฏ๐ต | ja | Japanese |
๐ท๐บ | ru | Russian |
๐ฎ๐น | it | Italian |
๐ฐ๐ท | ko | Korean |
๐ณ๐ฑ | nl | Dutch |
๐ต๐น | pt | Portuguese |
๐ธ๐ฆ | ar | Arabic |
๐น๐ท | tr | Turkish |
๐ธ๐ช | sv | Swedish |
๐ฉ๐ฐ | da | Danish |
๐ซ๐ฎ | fi | Finnish |
๐ณ๐ด | no | Norwegian |
๐ต๐ฑ | pl | Polish |
๐จ๐ฟ | cs | Czech |
๐ญ๐บ | hu | Hungarian |
๐ฌ๐ท | el | Greek |
๐ฎ๐ฑ | he | Hebrew |
๐น๐ญ | th | Thai |
๐ฎ๐ณ | hi | Hindi |
๐ง๐ฉ | bn | Bengali |
e.g.,
language: en
for English.
๐ Citation
@misc{RepoAgent,
author = {Qinyu Luo, Yining Ye, Shihao Liang, Arno},
title = {RepoAgent: A LLM-based Intelligent tool for repository understanding and documentation writing},
year = {2023},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/LOGIC-10/RepoAgent}},
}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for repoagent-0.0.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 92fc53a24f0ac7c893308902925e9f717492c85be492b4e36c78d19b8a554a2d |
|
MD5 | d825f1be3f857ac9bbbb4480c504a7d5 |
|
BLAKE2b-256 | a0f3e69b1cea0028886ec983feb79ab2ece4719973e583024130ac5195924d61 |