@xynehq/jaf
Version:
Juspay Agent Framework - A purely functional agent framework with immutable state and composable tools
16 lines • 449 B
TypeScript
import { z } from 'zod';
import { Tool } from '../core/types.js';
declare const handoffArgsSchema: z.ZodObject<{
agentName: z.ZodString;
reason: z.ZodString;
}, "strip", z.ZodTypeAny, {
reason: string;
agentName: string;
}, {
reason: string;
agentName: string;
}>;
type HandoffArgs = z.infer<typeof handoffArgsSchema>;
export declare const handoffTool: Tool<HandoffArgs, any>;
export {};
//# sourceMappingURL=handoff.d.ts.map