- 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
29 lines
980 B
Python
29 lines
980 B
Python
"""
|
|
Main API router for v1 endpoints.
|
|
"""
|
|
|
|
from fastapi import APIRouter
|
|
|
|
from app.api.v1.endpoints import (
|
|
auth,
|
|
documents,
|
|
queries,
|
|
commitments,
|
|
analytics,
|
|
health,
|
|
vector_operations,
|
|
week5_features,
|
|
)
|
|
|
|
api_router = APIRouter()
|
|
|
|
# Include all endpoint routers
|
|
api_router.include_router(auth.router, prefix="/auth", tags=["Authentication"])
|
|
api_router.include_router(documents.router, prefix="/documents", tags=["Documents"])
|
|
api_router.include_router(queries.router, prefix="/queries", tags=["Queries"])
|
|
api_router.include_router(commitments.router, prefix="/commitments", tags=["Commitments"])
|
|
api_router.include_router(analytics.router, prefix="/analytics", tags=["Analytics"])
|
|
api_router.include_router(health.router, prefix="/health", tags=["Health"])
|
|
api_router.include_router(vector_operations.router, prefix="/vector", tags=["Vector Operations"])
|
|
api_router.include_router(week5_features.router, prefix="/week5", tags=["Week 5 Features"])
|