/** * OpenAI model catalog — single source of truth for the OpenAI provider. * SDK-free: imports only from the types layer. See anthropic.models.ts for rationale. */ import type { ProviderDescriptor } from '../../plugins/plugin-api.types.js'; export declare const OPENAI_DESCRIPTOR: ProviderDescriptor; /** * Models that select reasoning depth via the `reasoning_effort`-style mode instead of * `temperature`/`top_p`. The OpenAI API rejects both as unsupported for these models. */ export declare const REASONING_CONTROLLED_MODELS: ReadonlySet; //# sourceMappingURL=openai.models.d.ts.map