Qortara Governance
LangChain governance sidecar. Closes the native-tool-calling bypass gap.
Qortara Governance is a sidecar process plus Python SDK that adds runtime policy decisions to LangChain agents. It intercepts tool dispatches before they execute, evaluates them against a Cedar policy pack, and closes the native-tool-calling bypass that affects callback-only governance approaches.
Install
pip install qortara-governance-langchainWith LangGraph support:
pip install 'qortara-governance-langchain[langgraph]'Quickstart
Wire the SDK into your LangChain agent. The LangChain integration guide walks through the full setup, policy pack authoring, and sidecar lifecycle.
from langchain_core.tools import tool
from qortara_governance_langchain import GovernedAgent
@tool
def fetch_customer_record(customer_id: str) -> dict:
"""Fetch a customer record from the CRM."""
...
agent = GovernedAgent(
tools=[fetch_customer_record],
policy_profile="crm-readonly",
)
result = agent.invoke({"input": "Look up customer 42"})Project links
| Source repository | https://github.com/MythologIQ-Labs-LLC/qortara-governance-langchain | GitHub |
| Issue tracker | https://github.com/MythologIQ-Labs-LLC/qortara-governance-langchain/issues | GitHub Issues |
| Community Q&A | https://github.com/MythologIQ-Labs-LLC/qortara-governance-langchain/discussions | GitHub Discussions |
Hosted option
Qortara Cloud Governance
A second, distinct product. When policy, trust, and evidence need to cross organizational boundaries, Qortara Cloud Governance runs the control plane for you. Pre-launch; pilot terms available to design-partner organizations.
LangChain, LangGraph, and LangSmith are trademarks of LangChain, Inc. Qortara is an independent project and is not affiliated with, endorsed by, or sponsored by LangChain, Inc. See our trademarks notice for full third-party mark attributions.