mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-19 02:54:46 +00:00
24 lines
798 B
TypeScript
24 lines
798 B
TypeScript
/**
|
|
* @deprecated Public SDK subpath has no bundled extension production imports.
|
|
* Prefer provider-setup or plugin-owned setup helpers for new provider code.
|
|
*/
|
|
export type {
|
|
OpenClawPluginApi,
|
|
ProviderAuthContext,
|
|
ProviderAuthMethodNonInteractiveContext,
|
|
ProviderAuthResult,
|
|
ProviderDiscoveryContext,
|
|
} from "../plugins/types.js";
|
|
|
|
export {
|
|
applyProviderDefaultModel,
|
|
configureOpenAICompatibleSelfHostedProviderNonInteractive,
|
|
discoverOpenAICompatibleLocalModels,
|
|
discoverOpenAICompatibleSelfHostedProvider,
|
|
promptAndConfigureOpenAICompatibleSelfHostedProvider,
|
|
promptAndConfigureOpenAICompatibleSelfHostedProviderAuth,
|
|
SELF_HOSTED_DEFAULT_CONTEXT_WINDOW,
|
|
SELF_HOSTED_DEFAULT_COST,
|
|
SELF_HOSTED_DEFAULT_MAX_TOKENS,
|
|
} from "../plugins/provider-self-hosted-setup.js";
|