Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Telemetry and audit for Agno agents and teams.
pip install fact0-sdk agno
agent.run()
import fact0 from agno.agent import Agent from agno.models.openai import OpenAIChat client = fact0.Client(api_key="f0_live_...") agent = Agent( model=OpenAIChat(id="gpt-4o"), tools=[...], markdown=True, ) with client.telemetry.execution(agent_id="agno.research") as ex: with ex.span("agent.run", span_type="MODEL_INVOCATION") as span: response = agent.run("Summarize the Q3 earnings call") span.complete(output={"content": response.content[:1000]})
def make_audited(tool_fn): def wrapped(*args, **kwargs): with client.telemetry.current_execution().span( tool_fn.__name__, span_type="TOOL_CALL" ) as span: result = tool_fn(*args, **kwargs) span.complete(output={"result": str(result)[:500]}) return result return wrapped