Host-agnostic LLM agent execution on top of the OpenAI Agents SDK: model fallback, streaming, structured-output extraction, self-correction, and tracing — behind a small injected provider seam.
Project description
agentrunner
Host-agnostic LLM agent execution on top of the OpenAI Agents SDK.
AgentRunner wraps the Agents SDK Runner with the production concerns you'd
otherwise rewrite per project:
- Model fallback on rate-limit / provider errors (policy supplied by you)
- Streaming with automatic
<think>…</think>chain-of-thought filtering - Structured-output extraction from varied SDK result shapes, with tolerant JSON sanitization/repair
- Self-correction: validate output, re-prompt on violations, then a
deterministic
normalize()fallback - Tracing hooks (e.g. Langfuse) and per-request context — all injected, no hard dependency
- Token clamping, timeouts, and structured error enrichment
The package depends only on openai-agents, openai, and pydantic. It has
no knowledge of any host application — you inject the model layer and
optional hooks via a small protocol.
Install
pip install boundless-agentrunner
The distribution is published as boundless-agentrunner (the agentrunner name
on PyPI was taken); the import name is still agentrunner:
import agentrunner
Quick start
AgentRunner resolves its model layer from an injected
ModelClientProvider. Configure it once at startup:
from agentrunner import AgentRunner, configure_agentrunner, ModelClientProvider
class MyProvider: # implements ModelClientProvider (a typing.Protocol)
default_rate_limit_delay_seconds = 1.0
max_rate_limit_delay_seconds = 8.0
def create_model_provider_for_model(self, model_key, provider_override=None):
# return (agents-SDK ModelProvider, resolved_model_id)
...
async def retry_with_fallback(self, model_key, run_with_model, **kw):
# run `run_with_model(resolved_model, provider)` with your fallback policy;
# return (result, successful_model)
...
def get_fallback_models(self, model): return []
def get_provider_for_model(self, model): return "myprovider"
def get_model_setting_aliases(self, resolved_model): return []
def clamp_max_tokens(self, model, max_tokens): return max_tokens
def is_rate_limit_error(self, exc): ...
def is_provider_error(self, exc): ...
configure_agentrunner(model_provider=MyProvider())
# then anywhere:
from agents import Agent
result = await AgentRunner.run(Agent(name="demo", model="...", instructions="..."), "hello")
Batteries-included: OpenRouter
Don't want to write a provider? Use the bundled OpenRouter one — a single
OPENROUTER_API_KEY reaches every model family (Claude, GPT, Llama, Qwen,
DeepSeek, Gemini, …) through OpenRouter's OpenAI-compatible endpoint, with model
fallback built in:
import os
from agentrunner import configure_agentrunner
from agentrunner.providers import OpenRouterModelClientProvider
configure_agentrunner(
model_provider=OpenRouterModelClientProvider(
# api_key defaults to $OPENROUTER_API_KEY
fallback_models=["anthropic/claude-sonnet-4.5", "openai/gpt-4o-mini"],
)
)
from agents import Agent
result = await AgentRunner.run(
Agent(name="demo", model="anthropic/claude-sonnet-4.5", instructions="..."),
"hello",
)
Models are addressed by their OpenRouter slug (vendor/model). The provider
forces Chat Completions (OpenRouter doesn't fully implement the Responses API),
honors the validation-retry budget, and classifies rate-limit/provider errors
for fallback.
Lazy configuration
If you can't configure at startup, register a bootstrap that runs on first use:
from agentrunner.runtime import register_bootstrap
register_bootstrap(lambda: configure_agentrunner(model_provider=MyProvider()))
Optional hooks
configure_agentrunner also accepts:
trace_processor_factory— returns an Agents-SDK trace processor (e.g. Langfuse)prompt_correction_emitter— async callback to record self-correction eventslangfuse_prompt_resolver— returns(prompt_name, prompt_version)for events
Output validation / self-correction
from agentrunner.output_validation import BoundedTextValidator
result = await AgentRunner.run(
agent, prompt,
output_validators=[BoundedTextValidator("title", 255)],
max_corrections=1,
)
On a validation failure the agent is re-prompted up to max_corrections times;
if it still fails, each validator's deterministic normalize() bounds the value.
Status
0.2.0 ships the execution engine, the ModelClientProvider seam, and the
batteries-included OpenRouter provider (single OPENROUTER_API_KEY, all
model families) so adopters can start without writing a provider.
License
MIT.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file boundless_agentrunner-0.2.0.tar.gz.
File metadata
- Download URL: boundless_agentrunner-0.2.0.tar.gz
- Upload date:
- Size: 46.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65fb4b4306cb0ff4e51ef121c279ccd0340149884c357747e9b4dd55ce16ba97
|
|
| MD5 |
2141313eed7bf71042f6eeb08efeb650
|
|
| BLAKE2b-256 |
cc5cb0c47a7a2ebca70645b87a34647b139e01146486fdb45e490f32c3483fef
|
Provenance
The following attestation bundles were made for boundless_agentrunner-0.2.0.tar.gz:
Publisher:
publish.yml on Boundless-Studios/agentrunner
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
boundless_agentrunner-0.2.0.tar.gz -
Subject digest:
65fb4b4306cb0ff4e51ef121c279ccd0340149884c357747e9b4dd55ce16ba97 - Sigstore transparency entry: 1960845588
- Sigstore integration time:
-
Permalink:
Boundless-Studios/agentrunner@26f33a980bf621415b29307ad1e0b49ae5b45387 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Boundless-Studios
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@26f33a980bf621415b29307ad1e0b49ae5b45387 -
Trigger Event:
push
-
Statement type:
File details
Details for the file boundless_agentrunner-0.2.0-py3-none-any.whl.
File metadata
- Download URL: boundless_agentrunner-0.2.0-py3-none-any.whl
- Upload date:
- Size: 37.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cfa98cd8dbe44b1bc2d493650e0aa8bf086945ce411432a07552af2856b28980
|
|
| MD5 |
34271c5e0f6c39367037be80f7972c7c
|
|
| BLAKE2b-256 |
0bb699e3e614ed013eeb33d41509f5c1d871c068fde0b1eac06843e7b201cdeb
|
Provenance
The following attestation bundles were made for boundless_agentrunner-0.2.0-py3-none-any.whl:
Publisher:
publish.yml on Boundless-Studios/agentrunner
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
boundless_agentrunner-0.2.0-py3-none-any.whl -
Subject digest:
cfa98cd8dbe44b1bc2d493650e0aa8bf086945ce411432a07552af2856b28980 - Sigstore transparency entry: 1960845824
- Sigstore integration time:
-
Permalink:
Boundless-Studios/agentrunner@26f33a980bf621415b29307ad1e0b49ae5b45387 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Boundless-Studios
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@26f33a980bf621415b29307ad1e0b49ae5b45387 -
Trigger Event:
push
-
Statement type: