Files
openclaw/src/agents/tools/web-tools.ts
2026-06-04 00:30:14 -04:00

9 lines
327 B
TypeScript

/**
* Barrel for web_fetch and web_search tool factories.
*
* Higher-level tool assembly imports this narrow module so tests can mock both
* web tools together without loading provider-specific implementations.
*/
export { createWebFetchTool } from "./web-fetch.js";
export { createWebSearchTool } from "./web-search.js";