index.ts•519 B
// Tool Registry Index - Registers all tools
import { toolRegistry } from './registry.js';
import { askGeminiTool } from './ask-gemini.tool.js';
import { pingTool, helpTool } from './simple-tools.js';
import { brainstormTool } from './brainstorm.tool.js';
import { fetchChunkTool } from './fetch-chunk.tool.js';
import { timeoutTestTool } from './timeout-test.tool.js';
toolRegistry.push(
askGeminiTool,
pingTool,
helpTool,
brainstormTool,
fetchChunkTool,
timeoutTestTool
);
export * from './registry.js';