code_rag/README.md
Alex Selimov 427adb8508
All checks were successful
Pytest / Explore-Gitea-Actions (push) Successful in -13m22s
Update video syntax
2025-03-23 22:42:45 -04:00

47 lines
1.6 KiB
Markdown

# CodeRAG 🔍
<video controls>
<source src="./img/demo.mp4" type="video/mp4">
<p>Your browser doesn't support HTML5 video. Here is a <a href="./img/demo.mp4">link to the video</a> instead.</p>
</video>
A fully local Retrieval Augmented Generation (RAG) tool for enhancing software development workflows through contextual AI assistance.
## Overview
CodeRAG integrates directly into Neovim as a plugin, creating a seamless development experience with AI assistance that respects your privacy. It indexes your workspace files into a persistent Chroma vector store and exposes an interface to query locally running Ollama models with prompts augmented by relevant context from your code.
## Features
- **Fully Local Operation**: All operations run on your machine without sending code to external services
- **Contextual Understanding**: Uses RAG to provide AI responses informed by your codebase
- **Neovim Integration**: Designed to work within your existing editor workflow
- **Persistent Knowledge**: Maintains a vector store of your codebase for quick retrieval
- **Ollama Compatibility**: Works with any model available through Ollama
## Usage
```bash
poetry run code-rag --help
```
## Roadmap
- [x] Basic RAG implementation
- [ ] Neovim UI components
- [ ] Full Neovim integration with RAG tool
- [ ] Agent implementation for extended capabilities
- [ ] Performance optimizations for large codebases
- [ ] Support for project-specific configuration
## License
GPLv2 license
## Acknowledgements
- Built with [Ollama](https://github.com/ollama/ollama)
- Vector storage provided by [Chroma](https://github.com/chroma-core/chroma)