UNPKG

braiin

Version:

Behavioral Reasoning AI for Intelligent Navigation

9 lines (8 loc) 295 B
import { Tool } from "./tool"; export interface Agent { name: string; description: string; tools: Tool[]; } export declare const createAgent: (name: string, description: string, tools: Tool[]) => Agent; export declare const findTool: (agent: Agent, tag: string) => Tool | undefined;