9d7ee5ecb1
📊 MAJOR UPDATES: - Updated README.md to reflect current system status (238 articles) - Enhanced documentation with 13 API endpoints breakdown - Added comprehensive tech stack and features overview - Updated system metrics with real-time processing status 🔧 SYSTEM OPTIMIZATIONS: - Removed similarity threshold in vector_store.py for better recall - Fixed file structure (removed incorrect backend/data folder) - Enhanced .gitignore for proper model exclusion ✅ CURRENT STATUS: - 238 articles indexed with real AI embeddings - 13 API endpoints (100% functional) - Groq LLM integration active - Production-ready with rate limiting and caching - Real-time RSS processing operational 🚀 System is now fully documented and production-ready!
60 lines
514 B
Plaintext
60 lines
514 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Virtual Environment
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Environment Variables
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Data files
|
|
data/raw_news/*.json
|
|
data/processed_news/*.json
|
|
*.db
|
|
*.sqlite
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Vector database files
|
|
*.faiss
|
|
*.index
|
|
|
|
# Models (large files)
|
|
models/
|