UNPKG

agentis

Version:

A TypeScript framework for building sophisticated multi-agent systems

15 lines (14 loc) 277 B
export interface ToolInput { query: string; [key: string]: any; } export interface ToolOutput { result: any; error?: string; raw?: any; } export interface ITool { name: string; description: string; execute(input: string): Promise<ToolOutput>; }