- Add missing psutil to requirements.txt (was causing ModuleNotFoundError) - Change pip install -e . to pip install . in README (production vs dev install) - Fix installation issue by using proper production install method Tested: pip install . now works properly without hanging or missing dependencies
25 lines
462 B
Plaintext
25 lines
462 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
|
|
|
|
# System monitoring
|
|
psutil |