Initial commit

This commit is contained in:
2025-12-29 18:29:35 +03:00
commit 0599dbcdf4
7 changed files with 3693 additions and 0 deletions

22
README.md Normal file
View File

@@ -0,0 +1,22 @@
# Local RAG System for Markdown Files
## Requirements
1. Install [Ollama](https://ollama.com/download/)
2. Pull required models:
```bash
ollama pull qwen2.5:7b-instruct-q8_0
ollama pull mxbai-embed-large:latest
```
You can use any model but update model names in `.env`
## Run
```bash
cp .env.example .env
uv sync
uv run main.py
```