/** * xAI (Grok) model catalog — single source of truth for the xAI 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 XAI_DESCRIPTOR: ProviderDescriptor; /** * Models that select reasoning depth via a dedicated `reasoning` mode/model variant * instead of `temperature`/`top_p`. The xAI API rejects both as unsupported for these * models. Matched by exact mode equality (not substring) so `non-reasoning` doesn't match. */ export declare const REASONING_CONTROLLED_MODELS: ReadonlySet; //# sourceMappingURL=xai.models.d.ts.map