CrewAI Integration¶
Roadmap
CrewAI integration is on the roadmap. In the meantime, you can use the REST API to log events from any agent framework, including CrewAI.
Using the REST API¶
You can integrate AgenticAudit with CrewAI today by calling the REST API directly from your tool callbacks:
from agentaudit import AgentAudit
audit = AgentAudit(api_key="aa_live_xxxxx")
# Log events from your CrewAI tools
audit.log(
agent_id="crewai-researcher",
action="connector_access",
data={"tool_name": "search_tool", "query": "customer data"},
)
A native CrewAI event hook integration is planned. Follow the GitHub repo for updates.
Next steps¶
- LangChain integration — callback handler for LangChain
- REST API — integrate any custom agent
- Risk scoring — how risk levels are determined