Files
Eduard van Valkenburg 36ce0950e4 Simplify Python hosting core (#6492)
Remove linking, multicast, durable delivery, and host push machinery from the v1 hosting core. Keep those scenarios in a proposed follow-up ADR and update channel packages, samples, docs, tests, and workspace metadata around the smaller host/channel contract.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
36ce0950e4 ยท 2026-06-12 08:34:08 +02:00
History
..

agent-framework-hosting-responses

OpenAI Responses-shaped channel for agent-framework-hosting.

Exposes a single POST /responses endpoint that accepts the OpenAI Responses API request body and returns either a Responses-shaped JSON body or a Server-Sent-Events stream when stream=True.

from agent_framework.openai import OpenAIChatClient
from agent_framework_hosting import AgentFrameworkHost
from agent_framework_hosting_responses import ResponsesChannel

agent = OpenAIChatClient().as_agent(name="Assistant")

host = AgentFrameworkHost(target=agent, channels=[ResponsesChannel()])
host.serve(port=8000)

The base host plumbing lives in agent-framework-hosting.