-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathrequirements.txt
More file actions
79 lines (68 loc) · 2.51 KB
/
requirements.txt
File metadata and controls
79 lines (68 loc) · 2.51 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
68
69
70
71
72
73
74
75
76
77
78
79
# ============================================
# DeepTutor Python Dependencies
# ============================================
# Python >= 3.10 required
# Install: pip install -r requirements.txt
# ============================================
# Core dependencies
# ============================================
python-dotenv>=1.0.0
PyYAML>=6.0
tiktoken>=0.5.0
jinja2>=3.1.0 # Template engine for search consolidation
# ============================================
# HTTP and API clients
# ============================================
requests>=2.32.2
openai>=1.30.0
anthropic>=0.30.0 # Anthropic Claude API
perplexityai>=0.1.0
dashscope>=1.14.0
aiohttp>=3.9.4
httpx>=0.27.0
urllib3>=2.2.1
# ============================================
# Async support
# ============================================
nest_asyncio>=1.5.8
tenacity>=8.0.0
# ============================================
# Web framework and server
# ============================================
fastapi>=0.100.0
uvicorn[standard]>=0.24.0
websockets>=12.0
python-multipart>=0.0.6
pydantic>=2.0.0
# ============================================
# RAG and knowledge base
# ============================================
raganything>=0.1.0
docling>=2.31.0 # Document parser for Office/HTML (alternative to MinerU)
# ============================================
# LlamaIndex
# ============================================
llama-index>=0.14.12
# ============================================
# Academic and research tools
# ============================================
arxiv>=2.0.0
# ============================================
# Scientific computing (for RAG and code execution)
# ============================================
numpy>=1.24.0,<2.0.0 # NumPy 1.24+ required for array API, <2.0 for compatibility
# matplotlib>=3.7.0 # Uncomment if needed for plotting
# scipy>=1.11.0 # Uncomment if needed for scientific computing
# pandas>=2.0.0 # Uncomment if needed for data analysis
# PDF parsing
PyMuPDF>=1.26.0 # For PDF text extraction (fast and reliable)
# Vector search (optional but recommended for llamaindex pipeline)
# faiss-cpu>=1.7.4 # Uncomment for CPU-only FAISS support (faster search)
# faiss-gpu>=1.7.4 # Uncomment if you have GPU and want GPU acceleration
# ============================================
# Development and testing tools
# ============================================
pytest>=7.0.0 # Testing framework
pre-commit>=3.0.0
safety<3.0.0 # Pin to stable 2.x version, 3.0.0 is broken
bandit>=1.8.0