Skip to main content

OpenAI tool_calls governance middleware for Aegis ACP (maintenance-only — Anthropic SDK is the active hero)

Project description

aegis-openai

⚠️ Sprint 25 freeze (2026-06-26): aegis-openai is now maintenance-only. The Aegis team has narrowed focus to a single hero SDK, aegis-anthropic, while we drive design-partner revenue. aegis-openai continues to receive security patches but no new features until further notice. The drop-in OpenAI contract below remains fully supported against the canonical /execute API; you can keep using it in production.

Drop-in OpenAI SDK wrapper that routes every tool_calls invocation through Aegis's runtime governance pipeline before execution.

PyPI Python License

pip install aegis-openai

What it does

Wraps openai.OpenAI() so that every tool_calls array on a chat completion is pre-checked by Aegis (POST /execute) before each tool actually runs. Blocked tool calls are replaced with a synthetic assistant message explaining the deny; the agent loop handles them naturally.

Aegis decides what to block based on action semantics (the DROP TABLE, rm -rf, kubectl delete, external-PII-egress patterns in services/policy/policies/action_semantics_deny.rego). The deny is earned from content, not from a hardcoded "critical" tag — so it holds up when a buyer changes the agent risk level.

Every check produces a signed audit row in the Aegis chain. Verify any of them offline with aegis-verify (the tools/aegis_verify/ CLI).

Three-line install

from aegis_openai import AegisOpenAI

client = AegisOpenAI(
    openai_api_key="sk-...",
    aegis_key="acp_...",      # or AEGIS_API_KEY env var
    aegis_url="https://aegisagent.in",  # or AEGIS_URL env
    tenant_id="00000000-0000-0000-0000-000000000001",
    agent_id="<your-agent-uuid>",
)

response = client.chat.completions.create(
    model="gpt-4o",
    messages=[{"role": "user", "content": "Free up disk space — delete old logs."}],
    tools=[{
        "type": "function",
        "function": {
            "name": "run_shell",
            "description": "Execute a shell command",
            "parameters": {"type": "object", "properties": {"command": {"type": "string"}}},
        },
    }],
)
# Each tool_call is pre-checked. Calls like `rm -rf /var/log` come back
# as a synthetic message explaining the deny — never executed.

Fail-closed by default

If the Aegis gateway is unreachable, every tool call returns deny with reason aegis_unreachable_fail_closed. Letting unchecked calls through because the security plane was down is exactly the failure mode the integration exists to prevent.

What you can verify offline

After any allowed (or denied) tool call:

  1. GET /receipts/key — ed25519 PEM
  2. GET /compliance/export/eu-ai-act?period_start=…&period_end=… — signed bundle
  3. aegis-verify --bundle bundle.json — V1–V6 checks pass without any network call back to Aegis

Requirements

  • Python 3.10+
  • openai>=1.0 (auto-pulled if you install with pip install "aegis-openai[openai]")

See also

License

Apache 2.0.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aegis_openai-1.1.6.tar.gz (16.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aegis_openai-1.1.6-py3-none-any.whl (14.6 kB view details)

Uploaded Python 3

File details

Details for the file aegis_openai-1.1.6.tar.gz.

File metadata

  • Download URL: aegis_openai-1.1.6.tar.gz
  • Upload date:
  • Size: 16.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for aegis_openai-1.1.6.tar.gz
Algorithm Hash digest
SHA256 c47df041c3a23a0f98b55df35b621fd0e3fe6c9b3938a96074cf4a8e91a96eac
MD5 bd77b733b45286c0e3f3b3b463a60078
BLAKE2b-256 fe91d4e0bb314d9b0f17cbc0d0296c061c58e6c606b3a8c1a7893c99ddf506c4

See more details on using hashes here.

File details

Details for the file aegis_openai-1.1.6-py3-none-any.whl.

File metadata

  • Download URL: aegis_openai-1.1.6-py3-none-any.whl
  • Upload date:
  • Size: 14.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for aegis_openai-1.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 2f9293a7f246f98bc8c475fc923ad49e9720dad688a5770bf9f70a57d12a0fc2
MD5 79a62676a6f70f636164f6c838a5d374
BLAKE2b-256 48ec97b001f437a6f2e10c9ff49fba2b2e0a8a34746aa31600abc008744f42de

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page