Skip to main content
These frameworks can use RedPill through the OpenAI-compatible Chat Completions API. Choose based on the execution model and type system your application needs.

CrewAI

Configure a RedPill-backed crew and bounded task.

PydanticAI

Build a typed agent with explicit usage limits.

OpenAI Agents SDK

Use a custom OpenAI client and Chat Completions model.

Shared production checks

Before deploying any agent:
  1. Confirm the selected model declares tools in GET /v1/models.
  2. Add timeouts, bounded retries, request limits, and tool-call limits.
  3. Treat model output and tool arguments as untrusted input.
  4. Use tee.redpill.ai with an is_tee: true model when calls must reject standard upstreams.
For a general-purpose stack that also covers streaming and retrieval, see LangChain.