UNPKG

@xynehq/jaf

Version:

Juspay Agent Framework - A purely functional agent framework with immutable state and composable tools

9 lines 444 B
/** * Complete example of A2A server with JAF integration * Shows how to set up multiple agents with A2A protocol support */ declare const createCalculatorAgent: () => import("../types.js").A2AAgent; declare const createGreetingAgent: () => import("../types.js").A2AAgent; declare const main: () => Promise<void>; export { createCalculatorAgent, createGreetingAgent, main as startExampleServer }; //# sourceMappingURL=server-example.d.ts.map