-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrequirements.txt
More file actions
67 lines (52 loc) · 1.6 KB
/
Copy pathrequirements.txt
File metadata and controls
67 lines (52 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# StillMe - Self-Evolving AI System Requirements
# Core Framework
fastapi==0.135.1
uvicorn[standard]==0.40.0
streamlit==1.52.2
# Database
sqlalchemy==2.0.45
alembic==1.18.1
# Note: sqlite3 is built-in Python module, no need to install
# HTTP Requests
httpx==0.28.1
requests==2.32.5
# Data Processing
# NOTE: streamlit requires pandas<3; pandas 3.x not available on current env
pandas==2.2.3
# numpy==1.25.2 # Not compatible with Python 3.12, pandas will install compatible numpy automatically
# Note: Using Python 3.11 for onnxruntime compatibility
# Visualization
plotly==6.5.2
# RSS & XML Processing
feedparser==6.0.12
beautifulsoup4==4.14.3
# Environment & Configuration
python-dotenv==1.2.1
pydantic==2.12.5
# Logging & Monitoring
loguru==0.7.3
# Date & Time
python-dateutil==2.8.2
pytz==2025.2
# Language Detection
langdetect==1.0.9
# JSON & Data Serialization
orjson==3.11.5
# Vector Database & Embeddings
# Note: Install torch CPU version separately to reduce build time
# Use: pip install torch torchvision --index-url https://download.pytorch.org/whl/cpu
# For now, let sentence-transformers install torch (will be slower but compatible)
# CRITICAL: ChromaDB 1.3.4 requires onnxruntime>=1.14.1
# Using Python 3.11 for compatibility (Python 3.12 doesn't have onnxruntime wheels on Linux yet)
onnxruntime>=1.14.1 # Required by chromadb, compatible with Python 3.11
chromadb==1.4.1
sentence-transformers>=2.7.0 # Updated to support newer huggingface_hub
# Security & Rate Limiting
slowapi==0.1.9
# Caching
redis>=5.0.0
# Development & Testing
pytest==9.0.2
pytest-asyncio==0.21.1
pytest-cov==7.0.0
pytest-xdist==3.8.0