mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-20 14:30:57 +00:00
18 lines
463 B
TypeScript
18 lines
463 B
TypeScript
export type {
|
|
OpenClawPluginApi,
|
|
ProviderAuthContext,
|
|
ProviderAuthMethodNonInteractiveContext,
|
|
ProviderAuthResult,
|
|
ProviderDiscoveryContext,
|
|
} from "../plugins/types.js";
|
|
|
|
export {
|
|
OLLAMA_DEFAULT_BASE_URL,
|
|
OLLAMA_DEFAULT_MODEL,
|
|
configureOllamaNonInteractive,
|
|
ensureOllamaModelPulled,
|
|
promptAndConfigureOllama,
|
|
} from "../plugins/provider-ollama-setup.js";
|
|
|
|
export { buildOllamaProvider } from "../agents/models-config.providers.discovery.js";
|