mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-25 21:09:34 +00:00
11 lines
401 B
TypeScript
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,
|
|
};
|
|
}
|