-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
58 lines (49 loc) · 2.45 KB
/
requirements.txt
File metadata and controls
58 lines (49 loc) · 2.45 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
# AEGIS Client Workspace Agentic Platform — Dependencies
#
# MINIMUM install for local demo (no API key, no Docker, no Neo4j):
# pip install streamlit python-dotenv pyyaml jsonschema httpx pydantic fastapi uvicorn pytest
#
# Full install:
# pip install -r requirements.txt
#
# Local mode works without any optional dependencies.
# Do not require API keys for the demo.
# ── Core — required for all modes ─────────────────────────────────────────────
streamlit>=1.35.0
python-dotenv>=1.0.0
pyyaml>=6.0.1
jsonschema>=4.22.0
httpx>=0.27.0
pydantic>=2.7.0
tenacity>=8.2.0
# ── REST API and FastAPI backend ───────────────────────────────────────────────
fastapi>=0.111.0
uvicorn[standard]>=0.30.0
# ── Testing ───────────────────────────────────────────────────────────────────
pytest>=8.2.0
pytest-asyncio>=0.23.0
pytest-cov>=5.0.0
# ── LLM providers — ALL OPTIONAL — demo uses mock mode, no key required ───────
# Set LLM_PROVIDER=anthropic in .env and add ANTHROPIC_API_KEY to use Claude (direct).
# anthropic>=0.34.0
#
# Set LLM_PROVIDER=openai in .env and add OPENAI_API_KEY to use OpenAI.
# openai>=1.0.0
#
# Set LLM_PROVIDER=bedrock to call Claude via AWS Bedrock (uses AWS credentials).
boto3>=1.34.0
# ── Graph storage — OPTIONAL — set NEO4J_ENABLED=true to use Neo4j ───────────
# neo4j>=5.18.0
# ── Embeddings (optional — production entity resolution) ─────────────────────
# sentence-transformers>=2.7.0
# ── Document processing — OPTIONAL ────────────────────────────────────────────
# PyMuPDF>=1.24.0
python-docx>=1.1.0
# ── Azure SDK (optional — Stage 2+ deployment) ────────────────────────────────
# azure-keyvault-secrets>=4.8.0
# azure-identity>=1.17.0
# azure-storage-blob>=12.20.0
# azure-monitor-opentelemetry>=1.3.0
# ── Data / ML (optional — TF-IDF entity resolution fallback) ─────────────────
# pandas>=2.0.0
# scikit-learn>=1.4.0