mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-16 19:11:46 +00:00
11 lines
398 B
TypeScript
11 lines
398 B
TypeScript
// Xai API module exposes the plugin public contract.
|
|
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,
|
|
};
|
|
}
|