Remove /agents prefix from agent router
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Successful in 1m8s
Integration Tests / test-service-integration (push) Successful in 2m39s
Multi-Node Stress Testing / stress-test (push) Successful in 5s
Node Failover Simulation / failover-test (push) Successful in 8s
Python Tests / test-python (push) Failing after 1m23s
Security Scanning / security-scan (push) Successful in 1m53s

- Remove prefix="/agents" from APIRouter initialization
- Keep tags=["AI Agents"] for API documentation
This commit is contained in:
aitbc
2026-05-08 11:49:17 +02:00
parent 0333da0f77
commit 3e238eb16f

View File

@@ -31,7 +31,7 @@ from ..domain.agent import (
from ..services.agent_service import AIAgentOrchestrator
from ..storage import get_session
router = APIRouter(prefix="/agents", tags=["AI Agents"])
router = APIRouter(tags=["AI Agents"])
@router.post("/workflows", response_model=AIAgentWorkflow)