| # SPARKNET Requirements for Streamlit Cloud |
| # Lighter version without heavy ML dependencies |
|
|
| # ============================================================================== |
| # Streamlit Web Framework |
| # ============================================================================== |
| streamlit>=1.28.0 |
|
|
| # ============================================================================== |
| # LLM Orchestration (LangChain Ecosystem) |
| # ============================================================================== |
| langchain>=0.1.0 |
| langchain-community>=0.0.20 |
| ollama>=0.1.0 |
|
|
| # ============================================================================== |
| # Vector Stores & Embeddings |
| # ============================================================================== |
| chromadb>=0.4.0 |
| sentence-transformers>=2.2.0 |
|
|
| # ============================================================================== |
| # Data Validation & Configuration |
| # ============================================================================== |
| pydantic>=2.0.0 |
| pydantic-settings>=2.0.0 |
| pyyaml>=6.0 |
| python-dotenv>=1.0.0 |
| typing-extensions>=4.0.0 |
|
|
| # ============================================================================== |
| # Observability & Logging |
| # ============================================================================== |
| loguru>=0.7.0 |
| rich>=13.0.0 |
|
|
| # ============================================================================== |
| # System Monitoring |
| # ============================================================================== |
| psutil>=5.9.0 |
|
|
| # ============================================================================== |
| # Web & HTTP |
| # ============================================================================== |
| requests>=2.31.0 |
| httpx>=0.25.0 |
|
|
| # ============================================================================== |
| # PDF & Document Processing |
| # ============================================================================== |
| reportlab>=4.0.0 |
| pymupdf>=1.23.0 |
|
|
| # ============================================================================== |
| # Caching & Performance |
| # ============================================================================== |
| cachetools>=5.3.0 |
| tenacity>=8.2.0 |
|
|