← Integration guides

CrewAI Integration

Full observability for your CrewAI multi-agent workflows — zero code changes.

Install

pip install nyraxis-sdk

Quick start

import nyraxis_sdk
from crewai import Agent, Task, Crew

nyraxis_sdk.init(
    api_key="nyx_your_api_key",
    agent_name="my-crew",
)

# Use CrewAI as normal — all calls are auto-traced
researcher = Agent(role="Researcher", goal="Research AI trends", ...)
task = Task(description="Research AI governance trends", agent=researcher)
crew = Crew(agents=[researcher], tasks=[task])
result = crew.kickoff()

nyraxis_sdk.shutdown()

What gets captured

  • Agent execution — role, goal, output, latency
  • Task execution — description, result
  • Tool calls — name, parameters, result
  • LLM calls — model, tokens, cost
  • Governance policies evaluated per span (PII, tool authorization, cost limits)

Other integrations