tinyagent-ts
Version:
Modern TypeScript framework for building AI agents with pluggable tools and ReAct reasoning
11 lines (10 loc) • 459 B
TypeScript
import { FileTool } from './default-tools/file.tool';
import { GrepTool } from './default-tools/grep.tool';
import { WebSearchTool } from './default-tools/web-search.tool';
import { UuidTool } from './default-tools/uuid.tool';
export declare const ToolPresets: {
all: () => (FileTool | GrepTool | WebSearchTool | UuidTool)[];
basic: () => (FileTool | UuidTool)[];
search: () => (FileTool | WebSearchTool | UuidTool)[];
none: () => never[];
};