Skip to main content

Testimony Records from AutoGen

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

from autogen_core.tools import StaticWorkbench
from testimony_autogen 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,
)
workbench = rec.gate(StaticWorkbench(tools))   # hand this to the agent
...
rec.write("record.jsonl")
$ python3 testimony_validate.py record.jsonl
Conformance: TR-4

Why the workbench is the right boundary

Workbench.call_tool is the one place every tool call passes through, and it is an abstract method on a public class, so a workbench that wraps a workbench is a supported thing to build rather than a trick. autogen#7405 and the open issue proposing a workbench-level approval gate are asking for exactly this seam.

list_tools passes straight through, so the model sees the same schemas, and start, stop, reset, save_state and load_state all delegate to the workbench underneath. The agent, the model client and the team configuration are untouched.

What it will not do

It will not fail open. If your decide returns anything that is not a decision it issued, the call raises and the tool does not run. openai-agents-python#4845 is the same mistake in a shipped SDK: 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 considered.

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

It will not gate call_tool_stream, and says so rather than pretending. A decision has to precede the action, and a stream that has begun has already acted. Use call_tool for anything that needs an approval on the record.

A refusal comes back as a ToolResult with is_error set, because that is how a workbench already reports a call that produced no result. It is recorded with the same standing as a permission: a system that records only what it did is a receipt, not an account of itself.

Tests

tests/tests_autogen_testimony.py, 28 checks, run against a real autogen_core workbench. CI installs the library and fails if the suite skips.

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_autogen-0.1.0.tar.gz (22.5 kB view details)

Uploaded Source

Built Distribution

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

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

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for testimony_autogen-0.1.0.tar.gz
Algorithm Hash digest
SHA256 f2d1706f3a2895dac2d7bfb4fb08bc132d8d8ccd908898f577532092c5e5bff8
MD5 e3c3d4d9e54b97c1f8abc93f7aa94f10
BLAKE2b-256 897802833394dc338df1e82e1ae6853471a0312fed84fc363e247466695a4780

See more details on using hashes here.

Provenance

The following attestation bundles were made for testimony_autogen-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_autogen-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for testimony_autogen-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 eed622164571d1ce94c57bea2ef7e248cc2252c9b451fba19d975626e17f9480
MD5 8072129683779576e830b21d4530bbbf
BLAKE2b-256 73e2041ffc627bc4e3317cb44be55d02482e60d1176c82395de99027f1758a08

See more details on using hashes here.

Provenance

The following attestation bundles were made for testimony_autogen-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