/** * presets.ts — vendor DATA for well-known OpenAI-compatible endpoints. * * A preset is nothing but an `OpenAICompatProviderOptions` literal: base URL + * branding (icon/color/helpUrl) carried over from the retired per-vendor * packages. No code varies per vendor — that is the whole point. * * ```ts * aparteGlobalConfig.registerAIProvider(createOpenAICompatProvider(presets.MISTRAL)); * ``` * * Local servers (LM Studio, Ollama) are served through their OpenAI-compat * `/v1` endpoints — same format, `isLocal` just relaxes the key requirement. */ import type { OpenAICompatProviderOptions } from './index.js'; /** Vendor presets for {@link createOpenAICompatProvider}. Pure data. */ export declare const presets: { readonly OPENAI: OpenAICompatProviderOptions; readonly MISTRAL: OpenAICompatProviderOptions; readonly ZAI: OpenAICompatProviderOptions; readonly OPENROUTER: OpenAICompatProviderOptions; readonly LMSTUDIO: OpenAICompatProviderOptions; readonly OLLAMA: OpenAICompatProviderOptions; }; //# sourceMappingURL=presets.d.ts.map