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.
CrewAI integration for Valiqor tracing — coming soon.
trace_workflow
trace_function
from valiqor.trace import trace_workflow, trace_function from crewai import Agent, Task, Crew researcher = Agent( role="Researcher", goal="Find accurate information", backstory="Expert researcher" ) @trace_function("crew-kickoff") def run_crew(topic): task = Task( description=f"Research {topic}", agent=researcher, expected_output="A summary" ) crew = Crew(agents=[researcher], tasks=[task]) return crew.kickoff() with trace_workflow("crewai-research"): result = run_crew("AI safety") print(result)