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.
Audit and trace CrewAI multi-agent workflows with one execution per crew run.
import fact0 from crewai import Crew, Agent, Task client = fact0.Client(api_key="f0_live_...") with client.telemetry.execution(agent_id="research-crew") as ex: crew = Crew(agents=[...], tasks=[...]) for task in crew.tasks: with ex.span(task.description, span_type="CUSTOM") as span: result = task.execute() span.complete(output={"result": result}) crew.kickoff()
client.audit.log( actor={"id": "agent.researcher", "type": "agent"}, action="report.publish", resource={"id": report_id, "type": "report"}, outcome="success", )