Files
upage-git/app/lib/.server/llm/tools/index.ts
2025-09-24 17:02:44 +08:00

10 lines
190 B
TypeScript

import { serperTool } from './serper';
import { weatherTool } from './weather';
export const tools = {
serper: serperTool,
weather: weatherTool,
};
export { serperTool, weatherTool };