UNPKG

agentis

Version:

A TypeScript framework for building sophisticated multi-agent systems

10 lines (9 loc) 292 B
import { ITool, ToolOutput } from './ITool'; export declare class VercelLLMTool implements ITool { name: string; description: string; private model; private temperature; constructor(model?: string, temperature?: number); execute(input: string): Promise<ToolOutput>; }