abto (Python)
The ABTO Python Server SDK is a thin Gateway helper. It carries request-scoped x-abto-* identifiers with contextvars and injects them into outbound provider requests through httpx. The Gateway owns tokens, cost, latency, request_id, and variant assignment.
This package is the Python counterpart of the Node.js @abto-app/calling package. npm and PyPI releases remain separate for each language.
Install
pip install abto # Core context and header helpers
pip install "abto[openai]" # OpenAI and httpx integration
Quick start
import os
from abto import init_abto
abto = init_abto(
api_key=os.environ["ABTO_API_KEY"],
gateway_base_url="https://gateway.abto.app/v1",
provider_keys={
"openai": os.environ["OPENAI_API_KEY"],
# Include candidate keys for every provider the project may route to.
# "anthropic": os.environ["ANTHROPIC_API_KEY"],
# "gemini": os.environ["GEMINI_API_KEY"],
# "deepseek": os.environ["DEEPSEEK_API_KEY"],
# "kimi": os.environ["KIMI_API_KEY"],
},
)
openai = abto.openai()
def generate(device_id: str):
with abto.with_context(
device_id=device_id,
feature_id="resume.make",
):
return openai.chat.completions.create(
model="gpt-4.1",
messages=[{"role": "user", "content": "Create a resume draft"}],
)
Connect LangChain
Pass ABTO's connection options to your existing ChatOpenAI model.
Keep your chains, retrievers, prompts, callbacks, and retry settings.
pip install "abto[openai]" langchain-openai
This example connects both sync and async calls. Set your Calling Key and OpenAI API key in server environment variables.
import asyncio
import os
from abto import init_abto
from langchain_openai import ChatOpenAI
abto = init_abto(
api_key=os.environ["ABTO_CALLING_KEY"],
gateway_base_url="https://gateway.abto.app/v1",
provider_keys={"openai": os.environ["OPENAI_API_KEY"]},
)
sync_options = abto.openai_options()
async_options = abto.async_openai_options()
model = ChatOpenAI(
model="gpt-4.1-mini",
use_responses_api=False,
**sync_options,
http_async_client=async_options["http_client"],
)
async def main():
try:
with abto.with_context(feature_id="support.reply"):
reply = await model.ainvoke("How can I check my delivery status?")
print(reply.content)
finally:
sync_options["http_client"].close()
await async_options["http_client"].aclose()
asyncio.run(main())
In synchronous code, call model.invoke(...) on the same model.
In a server, create and reuse the model and connection options, then close the HTTP clients at shutdown.
After a call, find support.reply in the Dashboard request list to check the response, cost, and latency.
Reuse an existing HTTP client
Wrap the transport where you create your existing client, then pass the client to ABTO.
Your custom send() method, request/response hooks, connection pools, and cookies stay in use.
import httpx
from abto import wrap_httpx_transport
# If you already have a transport, wrap that object instead of HTTPTransport().
existing_sync_client = httpx.Client(
transport=wrap_httpx_transport(httpx.HTTPTransport()),
trust_env=False,
)
sync_options = abto.openai_options(http_client=existing_sync_client)
existing_async_client = httpx.AsyncClient(
transport=wrap_httpx_transport(httpx.AsyncHTTPTransport()),
trust_env=False,
)
async_options = abto.async_openai_options(http_client=existing_async_client)
Keep your existing timeout, TLS, and proxy settings.
This example disables automatic proxy selection from environment variables. If you use a proxy, configure it explicitly on the transport.
Wrap each transport in mounts as well.
ABTO does not replace the internals of an already-created client; make this change where you construct the client.
An unwrapped route receives no ABTO credentials, and ABTO reports a configuration error after receiving its response.
Closing the returned ABTO clients does not close the clients you supplied. Keep their existing shutdown handling.
ABTO owns Gateway and direct-fallback authentication and disables automatic redirects to keep keys on the configured destinations.
After customer hooks run, ABTO checks the destination and Host header, then adds keys only to a separate wire request.
Your request/response hooks and send() do not receive real ABTO credentials added by the SDK.
Errors from your hooks or observation code in send() propagate without triggering ABTO direct fallback.
Your existing OpenAI and LangChain retry settings still apply.
Place manually configured logging transports outside the ABTO wrapper. The inner transport that performs network I/O necessarily receives authentication keys.
You can also pass openai_options() to the official OpenAI client and async_openai_options() to AsyncOpenAI.
The returned api_key is a placeholder that keeps the real key out of framework trace serialization. Credentials are injected when the request is sent.
Keep request context and tracing
Invoke each user's chain inside with abto.with_context(feature_id=..., device_id=...).
Python contextvars keeps concurrent async requests separate.
For background jobs, also store and forward the device ID received from the browser with the job data.
Keep Langfuse or LangSmith callbacks, tags, and metadata in your existing invocation configuration. Tracing tools record the input your app sends. If you change the model, prompt, or parameters in the Dashboard, check the ABTO request record for what actually ran. The Gateway may remove tracing headers before forwarding to the provider, so a single trace extending through the provider is not guaranteed.
This integration is for OpenAI Chat Completions. Do not use this example to convert calls that use streaming or the Responses API. Keep TXT loaders and vector retrievers in your existing chain, and keep embeddings on their existing provider connection. To continue calls directly during Gateway outages, also configure direct fallback below.
Direct httpx usage
import httpx
from abto import with_context
client = httpx.Client(event_hooks=abto.httpx_event_hooks())
with with_context(device_id="d1", feature_id="resume.make"):
client.post("https://gateway.abto.app/v1/...") # Adds x-abto-* headers
Header contract
x-abto-device-id optional; without it, user analytics and sticky assignment are unavailable
x-abto-feature-id required; dot-separated feature ID, for example resume.make
x-abto-key-openai candidate provider key; add only the providers the project may route to
Authorization required; Bearer ABTO Calling Key
The Gateway maps the Calling Key to tenant_id, creates request_id in the x-abto-request-id response header, assigns variant_id, and removes x-abto-* headers before provider egress.
OpenAI direct fallback during Gateway outages
When an OpenAI provider key and an explicit fallback base URL are configured, direct fallback handles Gateway failures that can be classified safely. It sends the original Chat Completions body and model to OpenAI and does not reproduce the Gateway's provider or model policy.
from abto import OpenAIDirectFallbackOptions, init_abto
abto = init_abto(
api_key=os.environ["ABTO_API_KEY"],
gateway_base_url="https://gateway.abto.app/v1",
provider_keys={
"openai": os.environ["OPENAI_API_KEY"],
"anthropic": os.getenv("ANTHROPIC_API_KEY"),
"gemini": os.getenv("GEMINI_API_KEY"),
"deepseek": os.getenv("DEEPSEEK_API_KEY"),
"kimi": os.getenv("KIMI_API_KEY"),
},
fallback=OpenAIDirectFallbackOptions(
base_url="https://api.openai.com/v1",
timeout_seconds=30,
on_timeout=False,
),
)
Default behavior matches the JavaScript Calling SDK:
- DNS, connection-establishment, or TLS failure; pre-Gateway edge
502,503, or504; or pre-provider admission503: send the current request directly to OpenAI. - Gateway timeout, ambiguous disconnect, or interrupted response body: return the original error and keep the direct circuit closed.
on_timeout=True: replay the timed-out request directly, explicitly accepting duplicate execution and billing risk.x-abto-error-source: provider|transport, deterministic4xxor429: do not fall back for the current request.
The direct path sends only the OpenAI key and OpenAI-safe headers such as accept, content-type, idempotency-key, traceparent, tracestate, openai-*, and x-stainless-*. It removes ABTO headers, the Calling Key, cookies, proxy credentials, and custom Gateway headers. Direct calls bypass Gateway policy, ABTO telemetry, and request_id.
The ABTO transport performs at most one Gateway decision and one direct send per official OpenAI SDK attempt. It returns direct responses and errors to the official SDK, which remains the only retry authority.
fallback.base_url is required to enable direct fallback and has no default: it is the endpoint this application used before ABTO. Leave it unset and there is no fallback — a Gateway outage makes the request fail outright. Set it if the existing path should keep serving traffic after adoption. ABTO does not guess the destination, because the provider key leaves on that path; enabling fallback without it raises ValueError.
gateway_base_url is required as well — pass it or set ABTO_GATEWAY_BASE_URL.
Use init_abto(..., fallback=False) to disable direct fallback.
OpenAI client options
abto.openai(**kwargs) forwards official OpenAI options such as max_retries, timeout, organization, project, default_headers, and default_query unchanged, except for the three values ABTO must own:
api_keyis a placeholder; the real Calling Key is injected at dispatch.base_urlis the configured ABTO Gateway URL.http_clientis the ABTO routing client that enforces Gateway/direct-fallback boundaries.
Passing any of those three reserved arguments raises ValueError instead of silently discarding it.
timeout_seconds is an inactivity ceiling for each Gateway connection-pool wait, connect, write, and response-header-read stage. The body after the headers and direct requests retain abto.openai(timeout=...).
There is no fallback retry count. abto.openai(max_retries=...) alone controls official OpenAI SDK retries and remains at the official default when omitted.
openai = abto.openai(max_retries=2)
max_retries keeps the official OpenAI meaning: retries after the initial request. 0 means one Gateway round trip and 1 means two. OpenAI and model-provider error policy belongs to the customer application and the official OpenAI SDK.
Note that max_retries counts round trips, not provider invocations. Inside a single round trip the Gateway may retry along the same path — always for pre-send network failures (up to 2), and for transient provider failures (429, 500, 502, 503, 504, 529) when the node retry policy opts in (up to 2). The x-abto-attempt response header reports which attempt produced the response. See Retries happen at two layers.
Anthropic and Gemini keys remain Gateway routing candidates. This SDK does not provide native direct fallback for those providers.
See the full Python guide.
Preserve existing traces
ABTO keeps the traceparent and tracestate headers supplied by your tracing tool, including during direct fallback.
It adds feature and device information separately without replacing your trace ID.
This requires an SDK release with trace preservation; the published 1.1.1 release does not include it.
Keep your tracing tool's request header setup. ABTO does not configure tracing for you or connect traces through to the provider.
Public API
init_abto(api_key=None, gateway_base_url=None, provider_keys=None, fallback=None) -> Abtoabto.openai(**kwargs)abto.openai_options(**kwargs)/abto.async_openai_options(**kwargs)OpenAIDirectFallbackOptionsabto.with_context(device_id=?, feature_id=?, trace_id=?)abto.get_headers(ctx=None)/abto.create_trace_id()/abto.httpx_event_hooks()- Lower-level helpers:
with_context,get_context,get_headers,create_trace_id,create_traceparent,abto_request_hook,ABTO_HEADER, andAbtoContext
Development
pip install pytest
pytest
Release files for abto 1.1.4
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| abto-1.1.4.tar.gz | 34.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| abto-1.1.4-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 56.2 kB
Release files / abto-1.1.4.tar.gz
| Download URL | abto-1.1.4.tar.gz |
|---|---|
| Size | 34.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
de04db705a0fe465eb6f31e8b7b33d13d6b4fa4d385e4f850fb91bc1ff79042c
|
|
BLAKE2b-256 checksum How to use checksums |
f13411f89364e8649e1d9bcfca8e86b5c73299636811e3b5577447892beb32ce
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Amazon Linux","version":"2023","id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / abto-1.1.4-py3-none-any.whl
| Download URL | abto-1.1.4-py3-none-any.whl |
|---|---|
| Size | 22.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
d17becd54dda27bcf98315253139b7c8ae64947d3ac2c0334b6aed5a28667de4
|
|
BLAKE2b-256 checksum How to use checksums |
9d2fe172512bb49af305e79bf63b785ddc10005cc63d8e2d146daa2215764bf5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Amazon Linux","version":"2023","id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|