Integration Guides
Nomotic integrates with any AI agent framework through the GovernedAgentBase class. All integrations follow the same pattern:
govern_action()— evaluate the action before executionExecute — run the action if governance allows it
validate_output()— validate the agent's output after generation
The governed_run() method combines all three steps into a single call.
Available Integrations
Framework
Guide
Pattern
Prerequisites
All integrations require:
pip install nomoticPlus the framework-specific package (e.g., langgraph, crewai, openai, anthropic).
Core Pattern
Every integration follows this structure:
Start with GovernedAgentBase to understand the core API, then see the framework-specific guides.
Last updated

