mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-24 23:51:48 +00:00
13 lines
433 B
TypeScript
13 lines
433 B
TypeScript
// Narrow shared exports for web-search contract surfaces.
|
|
|
|
import type { WebSearchProviderPlugin } from "../plugins/types.js";
|
|
|
|
export {
|
|
getScopedCredentialValue,
|
|
resolveProviderWebSearchPluginConfig,
|
|
setScopedCredentialValue,
|
|
setProviderWebSearchPluginConfigValue,
|
|
} from "../agents/tools/web-search-provider-config.js";
|
|
export { enablePluginInConfig } from "../plugins/enable.js";
|
|
export type { WebSearchProviderPlugin };
|