This release is a pre-release and may not be stable for production use.
agent-framework-hosting-responses
OpenAI Responses-shaped helpers for app-owned Agent Framework hosting.
This package provides the Responses-specific conversion layer:
responses_to_run(...)— convert a Responses request body into Agent Framework run values.responses_session_id(...)— return(session_id, is_conversation_id)for a priorresp_*response id orconv_*conversation id, or(None, None)when neither is present.create_conversation_id(...)— mint a Responses-shaped conversation id.create_response_id(...)— mint a Responses-shaped response id.responses_from_run(...)— convert anAgentResponseinto a Responses-compatible JSON payload.responses_from_streaming_run(...)— convert an Agent FrameworkResponseStreaminto Responses-compatible SSE events.
FastAPI/Starlette/Django/Azure Functions code owns route registration, authentication, status codes, response construction, and background work.
from agent_framework_hosting import AgentState
from agent_framework_hosting_responses import (
create_response_id,
responses_from_run,
responses_session_id,
responses_to_run,
)
from fastapi import Body, FastAPI
from fastapi.responses import JSONResponse
app = FastAPI()
state = AgentState(agent)
@app.post("/responses")
async def responses(body: dict = Body(...)) -> JSONResponse:
run = responses_to_run(body)
session_id, is_conversation_id = responses_session_id(body)
response_id = create_response_id()
session = await state.get_or_create_session(session_id or response_id)
result = await (await state.get_target()).run(
run["messages"],
session=session,
options=run["options"],
)
if is_conversation_id:
# The app must serialize writers that advance this stable id.
await state.set_session(session_id, session)
else:
await state.set_session(response_id, session)
conversation_id = session_id if is_conversation_id else None
return JSONResponse(responses_from_run(result, response_id=response_id, conversation_id=conversation_id))
previous_response_id identifies an immutable continuation snapshot: multiple
requests may branch from it and store their results under distinct new response
ids. conversation_id is a mutable head instead; only one caller should
advance it at a time. These helpers do not provide per-conversation locking.
The base execution-state helpers live in
agent-framework-hosting.
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 agent_framework_hosting_responses-1.0.0a260721.tar.gz.
File metadata
- Download URL: agent_framework_hosting_responses-1.0.0a260721.tar.gz
- Upload date:
- Size: 11.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ee1a784a388d453601bd1577960a5c278e96b60e203ecbd7bbef84a9a59ed9b
|
|
| MD5 |
bcab4967e30ec10e8ad19a8b4bc66c5a
|
|
| BLAKE2b-256 |
f57d515ef30774d3bba5cd2bcc7802377ceea3fadf4a1f09c8dcf63419dc7058
|
File details
Details for the file agent_framework_hosting_responses-1.0.0a260721-py3-none-any.whl.
File metadata
- Download URL: agent_framework_hosting_responses-1.0.0a260721-py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52d9fa9601fe65299f76a758e6f747000a4fa25368c681ee23c3705189f40ee0
|
|
| MD5 |
71e6e45f808815f538e914c323c3c2eb
|
|
| BLAKE2b-256 |
caf36314b4e890cb361e4bed237fc714d6c0ae67270f2cedbdf2cd2accfc29c1
|