mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-09 09:02:54 +00:00
10 lines
341 B
TypeScript
10 lines
341 B
TypeScript
import { type WebSearchProviderPlugin } from "openclaw/plugin-sdk/provider-web-search-config-contract";
|
|
import { buildBraveWebSearchProviderBase } from "./web-search-shared.js";
|
|
|
|
export function createBraveWebSearchProvider(): WebSearchProviderPlugin {
|
|
return {
|
|
...buildBraveWebSearchProviderBase(),
|
|
createTool: () => null,
|
|
};
|
|
}
|