Add compliance to your existing AI stack.
The most popular framework for building LLM applications.
Supported:
from protectron.langchain import ProtectronCallback
callback = ProtectronCallback(system_id="my-agent")
executor = AgentExecutor(agent=agent, tools=tools, callbacks=[callback])Multi-agent orchestration framework.
Supported:
from protectron.crewai import ProtectronCallback
callback = ProtectronCallback(system_id="my-crew")
crew = Crew(agents=[...], tasks=[...], callbacks=[callback])Microsoft's multi-agent conversation framework.
Supported:
from protectron.autogen import ProtectronLogger
logger = ProtectronLogger(system_id="autogen-app")TypeScript SDK for AI applications.
Supported:
import { withProtectron } from '@protectron/vercel-ai';
const result = await withProtectron(
streamText({ model: openai('gpt-5.2'), prompt }),
{ systemId: 'my-app' }
);Building something custom? Use our base SDK.
from protectron import Protectron
protectron = Protectron(system_id="custom-app")
with protectron.trace("session-123") as trace:
trace.log_llm_call(model="gpt-5.2", input=[...], output="...")
trace.log_tool_call(tool="search", input={...}, output={...})import { Protectron } from '@protectron/sdk';
const protectron = new Protectron({ systemId: 'custom-app' });
await protectron.logEvent('llm_call', { model: 'gpt-5.2', ... });→ SDK OverviewWorks with any LLM provider through our framework integrations:
| Provider | Status |
|---|---|
| OpenAI | ✅ Supported |
| Anthropic | ✅ Supported |
| Google (Gemini) | ✅ Supported |
| Azure OpenAI | ✅ Supported |
| AWS Bedrock | ✅ Supported |
| Mistral | ✅ Supported |
| Cohere | ✅ Supported |
| Ollama | ✅ Supported |
| Local models | ✅ Supported |
| Integration | Status | ETA |
|---|---|---|
| Haystack | 🔄 In Development | Q1 2026 |
| LlamaIndex | 📋 Planned | Q1 2026 |
| Slack (notifications) | 📋 Planned | Q1 2026 |
| Jira (requirements sync) | 📋 Planned | Q2 2026 |
Want a specific integration? Let us know
# Core SDK
pip install protectron
# With framework support
pip install protectron[langchain]
pip install protectron[crewai]
pip install protectron[autogen]
pip install protectron[all]npm install @protectron/sdk
npm install @protectron/vercel-aiFree 14-day trial
Choose your framework
One line of code
See events in your dashboard
Add EU AI Act compliance to your AI stack in minutes.
Need help with integration? Contact support@protectron.ai