Convert code repos into an LLM prompt-friendly format. Forked from https://github.com/zackees/gptrepo
Project description
gptify
gptify is a command-line tool that transforms a Git repository into a single text file or multiple text chunks suitable for use with Large Language Models (LLMs) like ChatGPT. It preserves the file structure and content, enabling LLMs to understand and process the codebase for tasks such as code review, documentation generation, and answering questions about the code. This project is a fork of gptrepo with added features.
Relevance
This tool addresses the challenge of effectively using LLMs with codebases. By converting a repository into a digestible format, gptify allows developers to leverage the power of LLMs for various development tasks. It simplifies the process of feeding code context into LLMs, avoiding size limitations and formatting issues.
Installation
The easiest way to install gptify is using pip:
pip install gptify
Alternatively, you can install it using pipx:
poetry build && pipx install dist/*.whl
You can also uninstall older versions using the provided install script:
./install.sh
Usage
- Navigate to the root directory of your Git repository.
- Run the
gptifycommand:
gptify
This will generate a file named gptify_output.txt in the current directory containing the formatted repository content. You can then copy and paste the contents of this file into a ChatGPT session.
Options
--output <filename>: Specifies the name of the output file (default:gptify_output.txt).--clipboard: Copies the output directly to the clipboard instead of creating an output file.--openfile: Opens the output file after creation using the default system application.--preamble <filepath>: Prepends a custom preamble to the output file. This is useful for providing instructions or context to the LLM.--chunk: Enables chunking of the output into smaller files, useful for handling large repositories that exceed LLM context limits. Used with--max_tokensand--overlap.--max_tokens: Sets the maximum number of tokens per chunk when using the--chunkoption (default: 900000). Requires thetiktokenlibrary.--overlap: Sets the number of overlapping tokens between chunks when using the--chunkoption (default: 400). Helps maintain context across chunks. Requires thetiktokenlibrary.--output_dir: Specifies the output directory for chunks when using--chunk(default:gptify_output_chunks).
Example with custom output file and preamble:
gptify --output my_repo.txt --preamble instructions.txt
This command will generate my_repo.txt with the processed repository data, prepended with the content of instructions.txt.
Example with chunking:
gptify --chunk --max_tokens 4000 --overlap 200
This will create multiple files in the gptify_output_chunks directory, each containing a chunk of the repository data, with a maximum of 4000 tokens and an overlap of 200 tokens.
Contributing
Contributions are welcome.
License
This project is licensed under the MIT License - see the LICENSE file for details.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gptify-0.5.0.tar.gz.
File metadata
- Download URL: gptify-0.5.0.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aad37927b05d1d0e550001ec6c4cb4e78944cbf4f3c86e2bee81697f4d0b2844
|
|
| MD5 |
f1549252136f776522732b2190023eb9
|
|
| BLAKE2b-256 |
da28430ceda1bb4b9c5604a4dc75bf0bee1c176b140b158c9e9b31d72cde08a8
|
File details
Details for the file gptify-0.5.0-py3-none-any.whl.
File metadata
- Download URL: gptify-0.5.0-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
920f9073ba9282e5e033309299062a5910335e69e75d9d3847a119db80a911d5
|
|
| MD5 |
e2aaf35b499fa29c09bcb861aa2a5373
|
|
| BLAKE2b-256 |
11e6918a6fc075c508093a17ad957acc2b05af56bb87eb5909260883a8f8f882
|