Files
openclaw/extensions/exa/web-search-contract-api.ts
2026-06-04 21:02:07 -04:00

11 lines
401 B
TypeScript

// Exa API module exposes the plugin public contract.
import type { WebSearchProviderPlugin } from "openclaw/plugin-sdk/provider-web-search-contract";
import { createExaWebSearchProviderBase } from "./src/exa-web-search-provider.shared.js";
export function createExaWebSearchProvider(): WebSearchProviderPlugin {
return {
...createExaWebSearchProviderBase(),
createTool: () => null,
};
}