-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
39 lines (31 loc) · 973 Bytes
/
Copy pathrequirements.txt
File metadata and controls
39 lines (31 loc) · 973 Bytes
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
# QuantMind RAG System Dependencies
# Core Framework
fastapi>=0.104.0
uvicorn>=0.24.0
pydantic>=2.5.0
# Document Parsing
PyMuPDF>=1.23.0 # PDF parsing (fitz)
beautifulsoup4>=4.12.0 # HTML parsing
trafilatura>=1.6.0 # Web content extraction
pandas>=2.0.0 # CSV/Excel handling
openpyxl>=3.1.0 # Excel support
# Embeddings & Vector Store
sentence-transformers>=2.2.0
chromadb>=0.4.0
# LLM APIs (optional - install based on provider)
openai>=1.3.0 # OpenAI API
anthropic>=0.7.0 # Anthropic API
# NLP & Entity Extraction
# spacy>=3.7.0 # Optional: uncomment for advanced NER
# en-core-web-sm # SpaCy model: python -m spacy download en_core_web_sm
# HTTP & Networking
requests>=2.31.0
aiohttp>=3.9.0
# Utilities
python-multipart>=0.0.6 # File uploads
python-dotenv>=1.0.0 # Environment variables
# Development (optional)
# pytest>=7.4.0
# pytest-asyncio>=0.21.0
# black>=23.0.0
# ruff>=0.1.0