/** * Builtin provider profile for Google Gemini (OpenAI-compat shim). * * Gemini exposes an OpenAI-compatible shim at * `https://generativelanguage.googleapis.com/v1beta/openai` that accepts * the standard `chat.completions.create` wire shape. The Gemini-specific * quirk is the `extra_body.thinking_config` field which controls extended * reasoning budget selection. * * @task T9286 (W1d) * @epic T9261 (T-LLM-CRED-CENTRALIZATION Phase 3) */ import type { ProviderProfile } from '@cleocode/contracts'; /** * Google Gemini provider profile (OpenAI-compatible shim). * * Encodes the Gemini thinking config quirk as a `buildExtraBody` hook. * * @task T9286 (W1d) */ export declare const geminiProfile: ProviderProfile; //# sourceMappingURL=gemini.d.ts.map