Spaces:
Sleeping
Sleeping
File size: 2,523 Bytes
c96b98a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | from phi.api.api import api
from phi.api.routes import ApiRoutes
from phi.api.schemas.agent import AgentRunCreate, AgentSessionCreate
from phi.cli.settings import phi_cli_settings
from phi.utils.log import logger
def create_agent_session(session: AgentSessionCreate, monitor: bool = False) -> None:
if not phi_cli_settings.api_enabled:
return
logger.debug("--**-- Logging Agent Session")
with api.AuthenticatedClient() as api_client:
try:
api_client.post(
ApiRoutes.AGENT_SESSION_CREATE if monitor else ApiRoutes.AGENT_TELEMETRY_SESSION_CREATE,
json={"session": session.model_dump(exclude_none=True)},
)
except Exception as e:
logger.debug(f"Could not create Agent session: {e}")
return
def create_agent_run(run: AgentRunCreate, monitor: bool = False) -> None:
if not phi_cli_settings.api_enabled:
return
logger.debug("--**-- Logging Agent Run")
with api.AuthenticatedClient() as api_client:
try:
api_client.post(
ApiRoutes.AGENT_RUN_CREATE if monitor else ApiRoutes.AGENT_TELEMETRY_RUN_CREATE,
json={"run": run.model_dump(exclude_none=True)},
)
except Exception as e:
logger.debug(f"Could not create Agent run: {e}")
return
async def acreate_agent_session(session: AgentSessionCreate, monitor: bool = False) -> None:
if not phi_cli_settings.api_enabled:
return
logger.debug("--**-- Logging Agent Session (Async)")
async with api.AuthenticatedAsyncClient() as api_client:
try:
await api_client.post(
ApiRoutes.AGENT_SESSION_CREATE if monitor else ApiRoutes.AGENT_TELEMETRY_SESSION_CREATE,
json={"session": session.model_dump(exclude_none=True)},
)
except Exception as e:
logger.debug(f"Could not create Agent session: {e}")
async def acreate_agent_run(run: AgentRunCreate, monitor: bool = False) -> None:
if not phi_cli_settings.api_enabled:
return
logger.debug("--**-- Logging Agent Run (Async)")
async with api.AuthenticatedAsyncClient() as api_client:
try:
await api_client.post(
ApiRoutes.AGENT_RUN_CREATE if monitor else ApiRoutes.AGENT_TELEMETRY_RUN_CREATE,
json={"run": run.model_dump(exclude_none=True)},
)
except Exception as e:
logger.debug(f"Could not create Agent run: {e}")
|