/** Supported Azure OpenAI LLM deployment model names. */ export type AzureOpenAILLMModel = 'gpt-5.5' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'o4-mini' | 'o3' | 'gpt-4o'; /** Supported Azure OpenAI STT transcription model names. */ export type AzureOpenAISTTModel = 'gpt-4o-transcribe' | 'gpt-4o-mini-transcribe' | 'gpt-4o-transcribe-diarize' | 'whisper';