Spaces:
Running
Running
sync: 149 file da Baida98/AI@882b077e (2026-07-01 10:28 UTC)
Browse files- api/agent_loop_routes.py +3 -2
api/agent_loop_routes.py
CHANGED
|
@@ -12,8 +12,8 @@ Route coperte:
|
|
| 12 |
from __future__ import annotations
|
| 13 |
import os, asyncio, json, uuid, time, re
|
| 14 |
import re as _re_persona
|
| 15 |
-
from fastapi import APIRouter
|
| 16 |
-
router = APIRouter()
|
| 17 |
from fastapi.responses import StreamingResponse
|
| 18 |
from pydantic import BaseModel, field_validator
|
| 19 |
from typing import Literal
|
|
@@ -407,3 +407,4 @@ async def agent_kernel_dispatch(body: AgentKernelDispatchIn):
|
|
| 407 |
|
| 408 |
# ββ Agent tasks (FASE 2.1 + S359 persistence) ββββββββββββββββββββββββββββββββββ
|
| 409 |
|
|
|
|
|
|
| 12 |
from __future__ import annotations
|
| 13 |
import os, asyncio, json, uuid, time, re
|
| 14 |
import re as _re_persona
|
| 15 |
+
from fastapi import APIRouter, HTTPException, Request, Body
|
| 16 |
+
router = APIRouter()
|
| 17 |
from fastapi.responses import StreamingResponse
|
| 18 |
from pydantic import BaseModel, field_validator
|
| 19 |
from typing import Literal
|
|
|
|
| 407 |
|
| 408 |
# ββ Agent tasks (FASE 2.1 + S359 persistence) ββββββββββββββββββββββββββββββββββ
|
| 409 |
|
| 410 |
+
|