Metadata-Version: 2.5
Name: maigp-openai
Version: 1.0.1
Summary: AIGP governance adapter for openai
Requires-Python: >=3.11
Requires-Dist: maigp-agent-core>=1.0.0
Description-Content-Type: text/markdown

# maigp-openai

AIGP governance for direct OpenAI Chat Completions calls.

Part of **MAIGP** — the Mediated AI Governance Protocol: a runtime consent / scope / evidence layer for AI systems. Every governed call is **CHECK**ed before it runs (policy, scope, jurisdiction, circuit-breaker) and **RECORD**ed + **TRACE**d as tamper-evident evidence after.

## What it governs

Governs raw `openai` client calls (Chat Completions API).

## Governance model

This adapter maps the framework's lifecycle onto the AIGP agent-governance loop provided by [`maigp-agent-core`](https://pypi.org/project/maigp-agent-core/):

| Framework event | AIGP action |
|---|---|
| run / invocation start | **CHECK** (`pre_invoke`) — allowed? under what authority? |
| each model reply | token accounting (`on_model_call`) |
| each tool / function call | tool governance (`on_tool_call`) |
| run complete | **RECORD** + **TRACE** (`post_invoke`) |
| failure | `on_error` (recorded, then re-raised) |


## Install

```bash
pip install maigp-openai
```

Pulls in [`maigp-agent-core`](https://pypi.org/project/maigp-agent-core/) (shared lifecycle) and, transitively, [`maigp-client`](https://pypi.org/project/maigp-client/).

## Quick start

```python
from openai import OpenAI
from aigp_openai import GovernedOpenAI

governed = GovernedOpenAI(client=OpenAI(),
                          gov_url="https://gov.example.com",
                          app_id="my-openai-app", hmac_secret="secret")
response = governed.chat("gpt-4o", [{"role": "user", "content": "Hello"}])
```

## Raw API vs agent loop

This wraps single Chat Completions calls. To govern the **OpenAI Agents SDK** agent loop (Runner, tools, handoffs), use [`maigp-openai-agents`](https://pypi.org/project/maigp-openai-agents/).

## Links

- Protocol, specs & full adapter catalog: https://github.com/owner-spec/aigp-protocol
- Issues: https://github.com/owner-spec/aigp-protocol/issues

---

License: Proprietary. © Kanjani AI Research & Causum.
