Skip to main content

Testimony Records from the OpenAI Agents SDK

Packaged and tested; the first publish to PyPI is pending, so for now it is one file. Copy testimony_openai_agents.py and testimony_emit.py next to your agent. There is nothing else to install and nothing here depends on OMEM.

from agents import Agent, Runner, function_tool
from testimony_openai_agents import Recorder

def decide(req):
    # req.action, req.arguments, req.risk_class.
    # Your approval UI, queue or ticket goes here. The identity has to come
    # from your authentication layer; this adapter has none to find.
    if req.action == "close_account":
        return req.refuse("a balance is outstanding")
    return req.approve(approver={"id": "r.okonkwo@example.com", "kind": "human"},
                       identity_source="auth-session")

rec = Recorder(
    agent={"id": "support-agent", "kind": "agent"},
    risk={"issue_refund": "high", "close_account": "high",
          "search_docs": "low"},
    decide=decide,
)
result = await rec.run(Runner, agent, "Refund order 8842")
rec.write("record.jsonl")
$ python3 testimony_validate.py record.jsonl
Conformance: TR-4

This SDK already has the gate. It cannot say who opened it

Unlike the other adapters here, nothing in this one adds an approval boundary. needs_approval on a tool already stops the run, result.interruptions already lists what is waiting, and state.approve(item) already lets it through. That machinery is good and this does not replace it.

What state.approve(item) does not take is a principal. It records that a call was approved, not by whom, and any code holding the state can call it, including the process that proposed the action. So a run where an engineer read the arguments and decided is indistinguishable afterwards from one where a script approved everything.

An assessment of eight agent systems published in September 2026 recorded exactly that for this SDK: whether an approval identifies a person, whether the identity comes from the authentication layer, and whether the agent is prevented from approving its own action were all absent, and in each case because there is nowhere to put the answer.

This does not fix that by inventing an approver. It fixes it by refusing to write an approval unless you supply an identity from your own authentication layer, and by making the omission visible rather than silent.

What it will not do

It will not fail open. #4845 is the neighbouring mistake in this very SDK, one layer down: a callable needs_approval predicate returned None from an unhandled branch, None read as "no approval needed", and the gate opened on the path nobody had thought about. If your decide returns anything that is not a decision this issued, the run raises and the tool does not execute.

It will not classify risk from anything the model produced, let the acting agent approve its own action, or accept an identity source the model could have written.

A refusal is passed to state.reject with your reason as the rejection message, so the model is told why rather than told nothing, and it is recorded with the same standing as a permission.

Tests

tests/tests_openai_agents_testimony.py, 29 checks, against a real Runner with no API key and no network: only the model is scripted, against the SDK's public Model interface. The agent, the Runner, the tool, the interruption, to_state and approve/reject are all the real ones, because those are what is under test.

MIT. Copyright 2026 Garnet Taurus Ltd. The specification: https://datatracker.ietf.org/doc/draft-clifford-testimony-record/

Download files

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

Source Distribution

testimony_openai_agents-0.1.0.tar.gz (22.8 kB view details)

Uploaded Source

Built Distribution

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

testimony_openai_agents-0.1.0-py3-none-any.whl (24.7 kB view details)

Uploaded Python 3

File details

Details for the file testimony_openai_agents-0.1.0.tar.gz.

File metadata

  • Download URL: testimony_openai_agents-0.1.0.tar.gz
  • Upload date:
  • Size: 22.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for testimony_openai_agents-0.1.0.tar.gz
Algorithm Hash digest
SHA256 f5fdc1ff7d1b75fa76a6c99aca575131763bfc4b13c788ad1ec58bc9cc2f45b3
MD5 fbab8977c620a8c0818b476e06dae611
BLAKE2b-256 0856a701117ffdab21930cd5e7046bee627adf26ca10bd1cfe6eeb1e71eaa62e

See more details on using hashes here.

Provenance

The following attestation bundles were made for testimony_openai_agents-0.1.0.tar.gz:

Publisher: release-adapter.yml on troybrandonc-bit/machine-testimony

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file testimony_openai_agents-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for testimony_openai_agents-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9778cf627c76ccb2eb08fd46ee448a41d7a454ba0bbfa868d64e7e5af2ad41ac
MD5 e9ee9183cf1e16c76eacf3d3f323fe12
BLAKE2b-256 ff05b2126447e89fd2f01ff55bac0e2befaa6cfa263b84f91121fba2bee70ee0

See more details on using hashes here.

Provenance

The following attestation bundles were made for testimony_openai_agents-0.1.0-py3-none-any.whl:

Publisher: release-adapter.yml on troybrandonc-bit/machine-testimony

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.1.0 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page