Files
virtual_board_member/requirements.txt
Jonathan Pressnell 5b5714e4c2 feat: Complete Week 5 implementation - Agentic RAG & Multi-Agent Orchestration
- Implement Autonomous Workflow Engine with dynamic task decomposition
- Add Multi-Agent Communication Protocol with message routing
- Create Enhanced Reasoning Chains (CoT, ToT, Multi-Step, Parallel, Hybrid)
- Add comprehensive REST API endpoints for all Week 5 features
- Include 26/26 passing tests with full coverage
- Add complete documentation and API guides
- Update development plan to mark Week 5 as completed

Features:
- Dynamic task decomposition and parallel execution
- Agent registration, messaging, and coordination
- 5 reasoning methods with validation and learning
- Robust error handling and monitoring
- Multi-tenant support and security
- Production-ready architecture

Files added/modified:
- app/services/autonomous_workflow_engine.py
- app/services/agent_communication.py
- app/services/enhanced_reasoning.py
- app/api/v1/endpoints/week5_features.py
- tests/test_week5_features.py
- docs/week5_api_documentation.md
- docs/week5_readme.md
- WEEK5_COMPLETION_SUMMARY.md
- DEVELOPMENT_PLAN.md (updated)

All tests passing: 26/26
2025-08-10 09:25:46 -04:00

80 lines
1.3 KiB
Plaintext

# Core Framework
fastapi==0.104.1
uvicorn[standard]==0.24.0
pydantic==2.5.0
pydantic-settings==2.1.0
# Database
sqlalchemy==2.0.23
alembic==1.12.1
psycopg2-binary==2.9.9
redis==5.0.1
# AI/ML - State-of-the-Art
langchain==0.1.0
langchain-openai==0.0.2
langchain-community==0.0.10
langchain-core==0.1.10
langchain-experimental==0.0.47
openai==1.6.1
qdrant-client==1.7.0
sentence-transformers==2.2.2
requests==2.31.0 # For Voyage API calls
# Advanced AI Dependencies
transformers==4.36.0
torch==2.1.0
accelerate==0.25.0
bitsandbytes==0.41.3
optimum==1.16.0
# Multi-Modal AI
Pillow==10.1.0
opencv-python==4.8.1.78
pytesseract==0.3.10
# Authentication & Security
python-multipart==0.0.6
python-jose[cryptography]==3.3.0
passlib[bcrypt]==1.7.4
# File Processing
python-dotenv==1.0.0
httpx==0.25.2
aiofiles==23.2.1
pdfplumber==0.10.3
PyMuPDF==1.23.8
openpyxl==3.1.2
python-pptx==0.6.23
pandas==2.1.4
numpy==1.25.2
tabula-py==2.8.2
camelot-py==0.11.0
# Monitoring & Logging
prometheus-client==0.19.0
structlog==23.2.0
# Background Tasks
celery==5.3.4
kafka-python==2.0.2
# Storage
boto3==1.34.0
minio==7.2.0
# Development & Testing
pytest==7.4.3
pytest-asyncio==0.21.1
pytest-cov==4.1.0
pytest-mock==3.12.0
black==23.11.0
isort==5.12.0
mypy==1.7.1
bandit==1.7.5
safety==3.2.4
pre-commit==3.6.0
flake8==6.1.0
faker==20.1.0
factory-boy==3.3.0