@cuylabs/agent-foundry-hosting
v4.4.0
Published
Foundry Hosting integration for @cuylabs/agent-core (agent-core ↔ Invocations protocol bridge; mirrors agent-framework-foundry-hosting)
Maintainers
Readme
@cuylabs/agent-foundry-hosting
Foundry Hosting integration for @cuylabs/agent-core.
This package mirrors Python agent-framework-foundry-hosting. It is the
higher-level adapter layer that wires an agent framework runtime into the
lower-level Agent Server protocol packages:
@cuylabs/agent-foundry-agentserver-invocations -> azure-ai-agentserver-invocations
@cuylabs/agent-foundry-hosting -> agent-framework-foundry-hostingInvocations
import { runInvocationsServer } from "@cuylabs/agent-foundry-agentserver-invocations";
import { createInvocationsHandlerForAgent } from "@cuylabs/agent-foundry-hosting/invocations";
import {
createAgentServerAdapter,
InProcessAgentServer,
} from "@cuylabs/agent-server";
const server = new InProcessAgentServer(createAgentServerAdapter(myAgent));
await runInvocationsServer({
handler: createInvocationsHandlerForAgent(server),
port: 8088,
});Responses
Responses hosting is not part of this package yet. Add it as an explicit subpath once the TypeScript Responses protocol package exists, following the same split used here: protocol host first, framework adapter second.
