Qortara Governance — LangChain sidecar SDK. Deep tool-dispatch interception + Portable Trust Attestations + policy enforcement companion to LangSmith.
Project description
qortara-governance-langchain
Policy enforcement for LangChain and LangGraph agents, at the point of tool dispatch.
import qortara_governance
qortara_governance.init(tenant_key="qt_...")
# Existing LangChain / LangGraph code runs unchanged.
# Tool dispatches now pass through policy evaluation before execution.
What it does
qortara-governance-langchain intercepts tool dispatch inside LangChain and LangGraph agents and routes each call through a local policy decision point before execution. Denied calls raise a typed exception; allowed calls execute normally; calls requiring human approval raise with an approval URL.
Enforcement happens at BaseTool.invoke / BaseTool.ainvoke and (optionally) langgraph.prebuilt.ToolNode.invoke — the paths native tool-calling agents actually take, not just the callback surface that wrapper-based governance can observe.
This is a companion to LangSmith, not a replacement. LangSmith traces execution; this SDK decides whether execution is allowed to happen.
Install
pip install qortara-governance-langchain
# Optional — LangGraph support:
pip install 'qortara-governance-langchain[langgraph]'
Requires Python 3.10+ and langchain-core >= 0.3.
Quickstart
import qortara_governance
from langchain_core.tools import tool
from langchain.agents import AgentExecutor
qortara_governance.init(tenant_key="qt_...")
@tool
def send_email(to: str, body: str) -> str:
"""Send an email."""
...
# agent + AgentExecutor configured as usual
agent_executor = AgentExecutor(agent=agent, tools=[send_email])
try:
result = agent_executor.invoke({"input": "Email the finance list the Q3 numbers."})
except qortara_governance.QortaraPolicyDenied as denied:
log.warning("blocked by policy: %s", denied.rationale)
except qortara_governance.QortaraApprovalRequired as needs_approval:
log.info("approval needed at: %s", needs_approval.approval_url)
Decision model
Every intercepted call receives one of four decisions:
| Decision | SDK behavior |
|---|---|
allow |
Execute the tool normally |
deny |
Raise QortaraPolicyDenied with rationale + policy identifiers |
require_approval |
Raise QortaraApprovalRequired with an approval URL |
exempt |
Execute without evaluation (tool marked via @qortara_exempt) |
from qortara_governance import qortara_exempt
@qortara_exempt
@tool
def read_clock() -> str:
"""Trusted internal tool — no policy evaluation."""
return datetime.utcnow().isoformat()
Exempt tools still emit evidence records so audits remain complete.
Sidecar
The SDK talks to a local sidecar process over HTTP. Two run modes are supported:
- Subprocess (default).
init()launches the sidecar as a child process, bound to127.0.0.1on an ephemeral port. It terminates with the parent. No configuration required. - Daemon. Run the sidecar externally and set
QORTARA_SIDECAR_ENDPOINT=http://host:port.init()will use the existing endpoint instead of spawning one.
If the sidecar becomes unreachable, the SDK enters a circuit-breaker state that fails closed for a short cooldown window. Calls during that window raise QortaraSidecarUnavailable.
Configuration
Every option resolves in this precedence: init() kwarg → environment variable → default.
| Option | Env var | Default | Notes |
|---|---|---|---|
tenant_key |
QORTARA_TENANT_KEY |
(none) | Required for hosted decisions; optional for local-only policy packs |
sidecar_endpoint |
QORTARA_SIDECAR_ENDPOINT |
(spawn subprocess) | Set to use an external daemon |
policy_mode |
QORTARA_POLICY_MODE |
enforce |
enforce raises on deny; observe logs but executes |
offline_policy_path |
QORTARA_OFFLINE_POLICY |
(none) | Path to a local policy pack for air-gapped environments |
Observability
QortaraCallbackHandler is an additive LangChain callback for chain-boundary and retrieval events. It never blocks execution and is safe to register alongside LangSmith or any other callback.
from qortara_governance import QortaraCallbackHandler
chain.invoke({...}, config={"callbacks": [QortaraCallbackHandler()]})
W3C traceparent is propagated on every sidecar call, so evidence records and LangSmith traces share trace IDs for correlation.
Data handling
The SDK forwards the arguments of each intercepted tool call to the sidecar for policy evaluation. Tool arguments may contain sensitive content depending on how your tools are designed. In regulated environments, review which tool arguments will cross the SDK/sidecar boundary and ensure your sidecar deployment — and its storage, if any — satisfies your data-classification requirements.
Subprocess mode keeps all data on localhost for the lifetime of the process. Daemon mode depends on the network path and destination you configure.
Compatibility
| Dependency | Supported |
|---|---|
| Python | 3.10, 3.11, 3.12, 3.13 |
langchain-core |
>= 0.3 |
langgraph |
>= 0.2 (optional) |
Upcoming LangChain releases are tracked as they land. File an issue if you hit a patching regression on a newer version.
Status
Alpha. Minor breaking changes may ship before 1.0. No warranty is provided; see LICENSE. Evaluate carefully before production use and pin to a specific version.
Security
Report vulnerabilities privately — see SECURITY.md. Do not open public issues for security reports.
Contributing
See CONTRIBUTING.md. Contributor Covenant applies — see CODE_OF_CONDUCT.md.
License
Apache-2.0. See LICENSE and NOTICE.
LangChain, LangGraph, and LangSmith are trademarks of LangChain, Inc. qortara-governance-langchain is an independent project and is not affiliated with, endorsed by, or sponsored by LangChain, Inc. Qortara is a trademark of MythologIQ Labs, LLC — see TRADEMARKS.md.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file qortara_governance_langchain-0.1.0.tar.gz.
File metadata
- Download URL: qortara_governance_langchain-0.1.0.tar.gz
- Upload date:
- Size: 27.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cdd6f8739b93cf9ae74d1c0a78937623829d90ffb5a02836d1431697c25c68b
|
|
| MD5 |
deafc35e3280f7ed1102b8a548707d11
|
|
| BLAKE2b-256 |
bed7ec399b8e4c8a00f021a4b9c3a0ff65f771d175a03318b5a0b7fac67fbfaf
|
Provenance
The following attestation bundles were made for qortara_governance_langchain-0.1.0.tar.gz:
Publisher:
release.yml on MythologIQ-Labs-LLC/qortara-governance-langchain
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
qortara_governance_langchain-0.1.0.tar.gz -
Subject digest:
8cdd6f8739b93cf9ae74d1c0a78937623829d90ffb5a02836d1431697c25c68b - Sigstore transparency entry: 1351844345
- Sigstore integration time:
-
Permalink:
MythologIQ-Labs-LLC/qortara-governance-langchain@2e781de825e79ecb4e8b42c58b767fdc9f76d5d2 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/MythologIQ-Labs-LLC
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@2e781de825e79ecb4e8b42c58b767fdc9f76d5d2 -
Trigger Event:
push
-
Statement type:
File details
Details for the file qortara_governance_langchain-0.1.0-py3-none-any.whl.
File metadata
- Download URL: qortara_governance_langchain-0.1.0-py3-none-any.whl
- Upload date:
- Size: 19.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
795c5ccb171b8f14b6fe5e9628410f188f353a7544223cf6ee5ab712018a6b0a
|
|
| MD5 |
ea089016207147b20f0080f905c8afb0
|
|
| BLAKE2b-256 |
efaf537bad60ca5cde8a481079e8a60ff45a89e488b55a4302f23ddd212e09b4
|
Provenance
The following attestation bundles were made for qortara_governance_langchain-0.1.0-py3-none-any.whl:
Publisher:
release.yml on MythologIQ-Labs-LLC/qortara-governance-langchain
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
qortara_governance_langchain-0.1.0-py3-none-any.whl -
Subject digest:
795c5ccb171b8f14b6fe5e9628410f188f353a7544223cf6ee5ab712018a6b0a - Sigstore transparency entry: 1351844419
- Sigstore integration time:
-
Permalink:
MythologIQ-Labs-LLC/qortara-governance-langchain@2e781de825e79ecb4e8b42c58b767fdc9f76d5d2 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/MythologIQ-Labs-LLC
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@2e781de825e79ecb4e8b42c58b767fdc9f76d5d2 -
Trigger Event:
push
-
Statement type: