Metadata-Version: 2.4
Name: deeprepo
Version: 1.0.0
Summary: A production-grade Python library for RAG on local codebases with multi-provider AI support and MCP (Model Context Protocol) server integration
Author-email: Abhishek <abhishekpandey2432001@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/abhishek2432001/deeprepo
Project-URL: Documentation, https://github.com/abhishek2432001/deeprepo#readme
Project-URL: Repository, https://github.com/abhishek2432001/deeprepo
Project-URL: Bug Tracker, https://github.com/abhishek2432001/deeprepo/issues
Keywords: rag,retrieval-augmented-generation,vector-search,semantic-search,llm,embeddings,code-analysis,ai,machine-learning,nlp,mcp,model-context-protocol,cursor,claude-desktop
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Text Processing :: Indexing
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.24.0
Requires-Dist: requests>=2.28.0
Requires-Dist: openai>=1.0.0
Requires-Dist: google-generativeai>=0.3.0
Requires-Dist: anthropic>=0.18.0
Provides-Extra: huggingface
Provides-Extra: ollama
Provides-Extra: all-providers
Provides-Extra: mcp
Requires-Dist: mcp>=1.2.0; extra == "mcp"
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: build>=0.10.0; extra == "dev"
Requires-Dist: twine>=4.0.0; extra == "dev"
Dynamic: license-file

# DeepRepo

A production-grade Python library for performing RAG (Retrieval Augmented Generation) on local codebases with **multiple AI provider support**.

> See the main [README.md](https://github.com/abhishek2432001/deeprepo/blob/main/README.md) in the repository root for complete documentation.

## Quick Install

```bash
pip install deeprepo
```

## Quick Start

```python
from deeprepo import DeepRepoClient

# Initialize with Ollama (FREE, local)
client = DeepRepoClient(provider_name="ollama")

# Ingest your code
client.ingest("/path/to/your/code")

# Query with RAG
response = client.query("How does authentication work?")
print(response['answer'])
```

## Documentation

For full documentation, visit: https://github.com/abhishek2432001/deeprepo

## License

MIT License - see LICENSE file for details.
