Docs / Recipes / CrewAI

// AGENT FRAMEWORK · CREWAI

CrewAI

Pattern A · full governance

Configure CrewAI's LLM with a base_url at the gateway. Every agent and task in the crew routes through Agentics.

Pattern A — routed through the gateway. Your call travels through Agentics via a base-URL swap, so it is governed (routing, budgets, guardrails) inline and the Proof Ledger writes one verifiable receipt server-side. The receipt hash comes back in the x-agentics-receipt response header.

Install

shell
pip install crewai

Point the framework's OpenAI client at the gateway

CrewAI routes model calls through LiteLLM, so the openai/ prefix plus base_url is all it needs; OPENAI_API_BASE also works.

Python
from crewai import LLM llm = LLM( model="openai/@anthropic/claude-opus-4-8", base_url="https://agentics.you/api/v1", # the only change api_key="ak_…", # AGENTICS_API_KEY ) # pass llm=llm to your Agent(...) definitions

You can also configure it via environment: OPENAI_API_BASE=https://agentics.you/api/v1.

Run one call → see the receipt

Run your normal invocation, then read the receipt for that call off the ledger:

shell
# after your run, the last call's receipt hash: agentics log tail --limit 1 # → shows x-agentics-receipt: <receipt_hash> (verify it at /trust)

Every call the framework makes is now routed, governed, and receipted server-side.