10 lines
190 B
TypeScript
10 lines
190 B
TypeScript
import { serperTool } from './serper';
|
|
import { weatherTool } from './weather';
|
|
|
|
export const tools = {
|
|
serper: serperTool,
|
|
weather: weatherTool,
|
|
};
|
|
|
|
export { serperTool, weatherTool };
|