Spaces:
Runtime error
Runtime error
File size: 141 Bytes
215f78b |
1 2 3 4 5 6 7 8 |
from fastapi import APIRouter
router = APIRouter()
@router.get("/agents")
async def get_agents():
return {"message": "List of agents"}
|