Files
openclaw/extensions/xai/web-search-contract-api.ts
2026-05-29 08:23:32 +02:00

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,
};
}