Generate automatic repository documentation with LLMs
Project description
devtale
Every software product depends on some legacy, undocumented code repositories, whose authors left the company years ago.
Who isn't afraid to make a change, if the code is unreadable?
devtale
generates repo documentation with LLMs. Currently supporting Python, Go, PHP, JS, TypeScript and React projects.
https://github.com/mystral-ai/devtale/assets/11546115/e3cb1354-d9ef-406f-90d7-e92576587549
Installation
Use the following command:
pip install devtale
Usage
Terminal
Note: currently, devtale only supports GPT-4 as LLM.
-
Create a
.env
file in the root directory and set yourOPENAI_API_KEY
there. -
Run the following command to document a file or document all the files in a folder:
devtale -p [path/to/your/code] -o [path/to/docs]
To document an entire repository/directory include the -r
(recursive) flag. The program generates a JSON file per code file with the documentation data; If you want to also add the documentation inside a copy of the code file, then please include the -f
(fuse) flag. In case you already have the JSON docstrings, you can also fuse them separately using the corresponding script
Workflow
Note: You must check the box "Allow GitHub Actions to create and approve pull requests" in your repository's setting -> actions for this to work.
-
In the repository setting -> Secrets and Variables -> Actions -> Create
OPENAI_API_KEY
repository secret -
Add the following step in your workflow. Ensure to specify the write permission to avoid 403 errors when attempting to push the devtale PR.
jobs:
code-documentation:
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Document
uses: mystral-ai/devtale@v0.1.2
with:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
path: ${{ github.workspace }}
recursive: true
target_branch: main
save_tales: false
The recursive
option allows you to document the entire repository. Alternatively, you can specify a specific path to document a single file or folder and set recursive
to false
. The workflow action will automatically create the devtale/documentation
branch and push a new pull request for your review towards the target_branch
, including the added documentation.
Cost
You can estimate project documentation costs using the --estimate
flag when using the devtale
command in terminal, which won't make any GPT calls. Please note that this estimate is approximate, as it doesn't include GPT output tokens nor code items JSON tokens generated by the GPT call in the devtale/utils.py/extract_code_elements
function.
If you skip the estimate and simply run 'devtale,' the final log will display the total cost. This total cost considers GPT output tokens and the tokens added by the code items JSON.
For example:
Running the following command:
devtale -r -f -p devtale/devtale --estimate
will provide you with a cost estimate of $2.44733 USD. It won't document anything since it doesn't trigger any GPT calls. On the other hand, running:
devtale -r -f -p devtale/devtale
will give you the total cost of $2.95762 USD. This command triggers GPT calls and, consequently, documents the directory.
Dependency on GPT-4
We found that GPT-3.5
can't extract code components and generate docstring in a reliable manner, while GPT-4
can do so. Hence, devtale currently only works with GPT-4
. Beware that the cost associated with running devtale on a large code repository may be prohibitive. To reduce this cost, devtale uses gpt-3.5-turbo-0613
for generating top-level file summaries and README files and gpt-4-1106-preview
for the rest.
Pipeline
In a high-level overview, devtale works in the following way:
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file devtale-0.1.4.tar.gz
.
File metadata
- Download URL: devtale-0.1.4.tar.gz
- Upload date:
- Size: 18.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.11.4 Linux/6.2.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 60647e111aaf21bf35cad382949cebbd0d935b994dee214a286829d5fa44219a |
|
MD5 | 38ab9f207b55d9de421a33f8e0e6130a |
|
BLAKE2b-256 | 49fcdaefc58f39d1dfd286aee77529533c20ea934ea45bab7c3fab1f373045d6 |
File details
Details for the file devtale-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: devtale-0.1.4-py3-none-any.whl
- Upload date:
- Size: 21.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.11.4 Linux/6.2.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 57c6ebf4c668280b18c5e2c87fc0055e8eeff36c033bbca7f9e8c089d09b943e |
|
MD5 | a8629573baf3b88b8caaa1e02b649140 |
|
BLAKE2b-256 | 68b6464b4533395828f7be9a1a6b46c7df36057743b1d487c189f2fd853bf3a5 |