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