AgentUQ
Single-pass runtime reliability gate for LLM agents using token logprobs.
AgentUQ turns provider-native token logprobs into localized runtime decisions for agent steps. It does not claim to know whether an output is true. It tells you where a generation looked brittle or ambiguous and whether the workflow should continue, annotate the trace, regenerate a risky span, retry the step, dry-run verify, ask for confirmation, or block execution.
Why teams use it
- Catch brittle action-bearing spans before execution: SQL clauses, tool arguments, selectors, URLs, paths, shell flags, and JSON leaves
- Localize risk to the exact span that matters instead of treating the whole response as one opaque score
- Spend expensive verification selectively by using AgentUQ as the first-pass gate
Install
pip install agentuq
For the OpenAI example below, also install the provider SDK:
pip install openai
For local development and contributions:
python -m venv .venv
. .venv/bin/activate
pip install -e .[dev]
Examples below assume the public package and import namespace agentuq.
Integration status
OpenAI Responses API is the stable integration path in the current docs. Every other documented provider, gateway, and framework integration is preview, including OpenAI Chat Completions, OpenRouter, LiteLLM, Gemini, Fireworks, Together, LangChain, LangGraph, and the OpenAI Agents SDK.
Minimal loop
from openai import OpenAI
from agentuq import Analyzer, UQConfig
from agentuq.adapters.openai_responses import OpenAIResponsesAdapter
client = OpenAI()
response = client.responses.create(
model="gpt-4.1-mini",
input="Return the single word Paris.",
include=["message.output_text.logprobs"],
top_logprobs=5,
temperature=0.0,
top_p=1.0,
)
adapter = OpenAIResponsesAdapter()
analyzer = Analyzer(UQConfig(policy="balanced", tolerance="strict"))
record = adapter.capture(
response,
{
"model": "gpt-4.1-mini",
"include": ["message.output_text.logprobs"],
"top_logprobs": 5,
"temperature": 0.0,
"top_p": 1.0,
},
)
result = analyzer.analyze_step(
record,
adapter.capability_report(
response,
{
"model": "gpt-4.1-mini",
"include": ["message.output_text.logprobs"],
"top_logprobs": 5,
"temperature": 0.0,
"top_p": 1.0,
},
),
)
print(result.pretty())
Documentation
The web docs are built with Docusaurus from the canonical Markdown in docs/ and the site app in website/.
- Start here: docs/index.mdx
- Get started: docs/get-started/index.md
- Provider and framework quickstarts: docs/quickstarts/index.md
- Concepts: docs/concepts/index.md
- API reference: docs/concepts/public_api.md
- Maintainers: docs/maintainers/index.md
- Contributing: CONTRIBUTING.md
Repo layout
src/agentuq: library codeexamples: usage examplestests: offline, contract, and optional live testsdocs: canonical documentation contentwebsite: Docusaurus site and Vercel-facing app
Testing
Default pytest runs only offline tests:
python -m pytest
Live smoke checks are manual and opt-in:
AGENTUQ_RUN_LIVE=1 python -m pytest -m live
Release files for agentuq 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| agentuq-0.1.0.tar.gz | 257.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| agentuq-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 309.0 kB
Release files / agentuq-0.1.0.tar.gz
| Download URL | agentuq-0.1.0.tar.gz |
|---|---|
| Size | 257.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
7e737a054ce4d40ecd151649e0ca058f0272cf5d81550a601c2dfaba2632bd6f
|
|
BLAKE2b-256 checksum How to use checksums |
626a1485325b067b12d4786762bdd85d268cb9edb00682f05eafecbe3e11e349
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.7
|
Release files / agentuq-0.1.0-py3-none-any.whl
| Download URL | agentuq-0.1.0-py3-none-any.whl |
|---|---|
| Size | 52.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
93fbbaca522f67e20f725d238d0d6a30f3139b7ba9bf7684973c4ce20b704611
|
|
BLAKE2b-256 checksum How to use checksums |
26550b049b7133129246d7fe367657da0d128c511b55f66f8cb72256d66fbb59
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.7
|