code_rag/README.md
Alex Selimov 6376c817de
All checks were successful
Pytest / Explore-Gitea-Actions (push) Successful in -13m2s
Update with correct link to video
2025-03-23 22:43:50 -04:00

47 lines
1.8 KiB
Markdown

# CodeRAG 🔍
<video controls>
<source src="https://www.alexselimov.com/git/aselimov/code_rag/raw/commit/427adb8508010a9b92b3bce6a7ea797de28d0bac/img/demo.mp4" type="video/mp4">
<p>Your browser doesn't support HTML5 video. Here is a <a href="https://www.alexselimov.com/git/aselimov/code_rag/raw/commit/427adb8508010a9b92b3bce6a7ea797de28d0bac/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)