-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrequirements.txt
More file actions
44 lines (34 loc) · 996 Bytes
/
requirements.txt
File metadata and controls
44 lines (34 loc) · 996 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
40
41
42
43
44
# Core dependencies
numpy>=1.21.0
pandas>=1.3.0
# Statistical analysis (used in study configs and evaluation)
scipy>=1.7.0 # For statistical tests (ttest, ANOVA, etc.)
# Data validation
jsonschema>=4.0.0
pydantic>=2.0.0
# Visualization
matplotlib>=3.4.0
seaborn>=0.11.0
# Progress bars and utilities
tqdm>=4.62.0
# Testing
pytest>=7.0.0
pytest-cov>=3.0.0
# Development tools
black>=22.0.0
flake8>=4.0.0
mypy>=0.950
# GUI
streamlit>=1.20.0
watchdog>=2.1.0
# Optional: For LLM agents
openai>=1.0.0 # Required for OpenRouter and OpenAI API
anthropic>=0.3.0 # For Claude (Anthropic API)
pypdf>=3.0.0 # PDF text extraction for generation pipeline (multi-provider)
PyPDF2>=3.0.0 # Used by legacy DocumentLoader.get_pdf_pages (generation pipeline)
# Optional: For uploading results to Hugging Face Hub
huggingface_hub>=0.20.0
socksio>=1.0.0 # Required by httpx when using a SOCKS proxy (e.g. HF uploads)
# Optional: For OSF API integration (future)
# osfclient>=0.0.5
# requests>=2.28.0