-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
82 lines (64 loc) · 1.88 KB
/
requirements.txt
File metadata and controls
82 lines (64 loc) · 1.88 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
80
81
82
# Core
fastapi==0.109.2
uvicorn[standard]==0.27.1
pydantic==2.10.3
pydantic-settings==2.1.0
email-validator==2.1.0 # Required for Pydantic EmailStr
# Database
sqlalchemy==2.0.25
asyncpg==0.29.0
alembic==1.13.1
psycopg2-binary==2.9.9
# Redis / Queue
redis==5.0.1
hiredis==2.3.2
# Claude Agent SDK
anthropic==0.40.0
claude-agent-sdk==0.1.0 # Official Agent SDK with workflow support
# AutoGen 0.4 for multi-agent orchestration
autogen-agentchat>=0.4.0 # Core agentchat with RoundRobinGroupChat, AssistantAgent
autogen-ext[mcp]>=0.4.0 # MCP tools extension for tool integration
autogen-ext[openai]>=0.4.0 # OpenAI model client
# gRPC for distributed agent architecture
grpcio>=1.60.0
grpcio-tools>=1.60.0 # For protobuf compilation
# VotingAI for multi-agent voting and consensus
# votingai==1.0.2 # Disabled: numpy>=2 conflicts with pyautogen numpy<2
# Git operations
gitpython==3.1.41
# Docker SDK
docker==7.0.0
# HTTP client
httpx==0.26.0
aiofiles==23.2.1
python-multipart==0.0.9 # Required for FastAPI file uploads
# WebSocket (for dashboard real-time updates)
websockets==12.0
# Utilities
python-dotenv==1.0.0
structlog==24.1.0
tenacity==8.2.3
networkx==3.2.1 # For DAG operations
psutil==5.9.8 # For system monitoring
# Testing
pytest==7.4.4
pytest-asyncio==0.23.3
pytest-cov==4.1.0
# Memory / Vector DB
supermemory==3.20.0 # Supermemory SDK for code pattern memory
qdrant-client==1.7.3 # Backup vector DB (optional)
# Cell Colony CLI
click==8.1.7
rich==13.7.0
# Kubernetes Integration
kopf==1.37.2 # Kubernetes operator framework
kubernetes==28.1.0 # Official K8s Python client
# Security
hvac==1.2.1 # HashiCorp Vault client
cyclonedx-python-lib==4.2.3 # SBOM generation (SPDX/CycloneDX)
# Templates
jinja2==3.1.3 # For K8s manifest templates
# Additional Testing
pytest-mock==3.12.0 # Mocking utilities
factory-boy==3.3.0 # Test fixtures
faker==19.13.0 # Fake data generation