Metadata-Version: 2.4
Name: llama-index-readers-gpt-repo
Version: 0.5.0
Summary: llama-index readers gpt_repo integration
Author-email: Your Name <you@example.com>
Maintainer: mpoon
License-Expression: MIT
License-File: LICENSE
Requires-Python: <4.0,>=3.10
Requires-Dist: llama-index-core<0.15,>=0.13.0
Description-Content-Type: text/markdown

# GPT Repository Loader

```bash
pip install llama-index-readers-gpt-repo
```

This loader is an adaptation of https://github.com/mpoon/gpt-repository-loader
to LlamaIndex. Full credit goes to mpoon for coming up with this!

## Usage

To use this loader, you need to pass in a path to a local Git repository

```python
from llama_index.readers.gpt_repo import GPTRepoReader

loader = GPTRepoReader()
documents = loader.load_data(
    repo_path="/path/to/git/repo",
    preamble_str="<text to put at beginning of Document>",
)
```

This loader is designed to be used as a way to load data into [LlamaIndex](https://github.com/run-llama/llama_index/).
