UNPKG

@xynehq/jaf

Version:

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

14 lines 433 B
import { Tool } from '../core/types.js'; type DemoContext = { userId: string; permissions: string[]; workspace: string; }; export declare const mathTool: Tool<any, DemoContext>; export declare const fileReadTool: Tool<{ path: string; }, DemoContext>; export declare const fileWriteTool: Tool<any, DemoContext>; export declare const webSearchTool: Tool<any, DemoContext>; export {}; //# sourceMappingURL=tools.d.ts.map