Complete rebrand for v1.0-simple-search branch: Directory Changes: - claude_rag/ → mini_rag/ (preserving git history) Content Changes: - Updated all imports: from claude_rag → from mini_rag - Updated all file paths: .claude-rag → .mini-rag - Updated documentation and comments - Updated configuration files and examples - Updated all tests to use mini_rag imports This ensures complete independence from Claude/Anthropic branding while maintaining all functionality and git history. Simple branch contains the basic RAG system without LLM features.
22 lines
434 B
Plaintext
22 lines
434 B
Plaintext
# Lightweight Mini RAG - Ollama Edition
|
|
# Removed: torch, transformers, sentence-transformers (5.2GB+ saved)
|
|
|
|
# Core vector database and data handling
|
|
lancedb>=0.5.0
|
|
pandas>=2.0.0
|
|
numpy>=1.24.0
|
|
pyarrow>=14.0.0
|
|
|
|
# File monitoring and system utilities
|
|
watchdog>=3.0.0
|
|
requests>=2.28.0
|
|
|
|
# CLI interface and output
|
|
click>=8.1.0
|
|
rich>=13.0.0
|
|
|
|
# Configuration management
|
|
PyYAML>=6.0.0
|
|
|
|
# Text search utilities (lightweight)
|
|
rank-bm25>=0.2.2 |