Spaces:
Sleeping
Sleeping
| from fastapi import APIRouter | |
| from app.contracts.engine_contract import EngineRequest, EngineResponse | |
| from app.intents.run_intent import handle_run | |
| router = APIRouter(tags=["LiveSignals"]) | |
| async def run(req: EngineRequest) -> EngineResponse: | |
| return await handle_run(req) | |