import { OllamaProviderSettings, OllamaProvider } from 'ollama-ai-provider-v2'; import { BackendClient } from '../../../backend/client.js'; import '../../../internals/serializable.js'; import '../../../internals/types.js'; import '../../../internals/helpers/guards.js'; /** * Copyright 2025 © BeeAI a Series of LF Projects, LLC * SPDX-License-Identifier: Apache-2.0 */ type OllamaClientSettings = OllamaProviderSettings & { apiKey?: string; }; declare class OllamaClient extends BackendClient { protected create(): OllamaProvider; } export { OllamaClient, type OllamaClientSettings };