Extensions: route Signal and xai through plugin-sdk

This commit is contained in:
Muhammed Mukhthar CM
2026-03-18 05:42:54 +00:00
parent dc20a7cd89
commit ff849613a4
3 changed files with 3 additions and 3 deletions

View File

@@ -1,2 +1,2 @@
export * from "./src/index.js";
export type { SignalAccountConfig } from "../../src/config/types.signal.js";
export type { SignalAccountConfig } from "openclaw/plugin-sdk/signal";

View File

@@ -4,7 +4,7 @@ import {
resolveAccountEntry,
type OpenClawConfig,
} from "openclaw/plugin-sdk/account-resolution";
import type { SignalAccountConfig } from "../../../src/config/types.signal.js";
import type { SignalAccountConfig } from "openclaw/plugin-sdk/signal";
export type ResolvedSignalAccount = {
accountId: string;

View File

@@ -10,11 +10,11 @@ import {
resolveTimeoutSeconds,
resolveWebSearchProviderCredential,
setScopedCredentialValue,
type WebSearchProviderPlugin,
withTrustedWebToolsEndpoint,
wrapWebContent,
writeCache,
} from "openclaw/plugin-sdk/provider-web-search";
import type { WebSearchProviderPlugin } from "../../src/plugins/types.js";
const XAI_WEB_SEARCH_ENDPOINT = "https://api.x.ai/v1/responses";
const XAI_DEFAULT_WEB_SEARCH_MODEL = "grok-4-1-fast";