AZURE_MODELS = ["gpt-4.1-mini"] AZURE_REALTIME_MODELS = ["gpt-4o-realtime-preview"] AZURE_REALTIME_VOICES = [ "alloy", "ash", "ballad", "coral", "echo", "sage", "shimmer", "verse", ] AZURE_REALTIME_API_VERSIONS = [ "2025-04-01-preview", "2024-10-01-preview", "2024-12-17", ] AZURE_SPEECH_REGIONS = [ "eastus", "eastus2", "westus", "westus2", "westus3", "centralus", "northcentralus", "southcentralus", "westcentralus", "westeurope", "northeurope", "uksouth", "ukwest", "francecentral", "switzerlandnorth", "germanywestcentral", "norwayeast", "australiaeast", "eastasia", "southeastasia", "japaneast", "japanwest", "koreacentral", "centralindia", "southindia", "brazilsouth", ] AZURE_SPEECH_TTS_LANGUAGES = [ "en-US", "en-GB", "en-AU", "en-CA", "en-IN", "es-ES", "es-MX", "fr-FR", "fr-CA", "de-DE", "it-IT", "ja-JP", "ko-KR", "zh-CN", "zh-HK", "zh-TW", "pt-BR", "pt-PT", "ru-RU", "ar-SA", "nl-NL", "pl-PL", "sv-SE", "hi-IN", ] AZURE_SPEECH_TTS_VOICES = [ "en-US-AriaNeural", "en-US-GuyNeural", "en-US-JennyNeural", "en-US-DavisNeural", "en-US-AmberNeural", "en-US-AnaNeural", "en-US-AshleyNeural", "en-US-BrandonNeural", "en-US-ChristopherNeural", "en-US-ElizabethNeural", "en-US-EricNeural", "en-US-JacobNeural", "en-US-MichelleNeural", "en-US-MonicaNeural", "en-US-NancyNeural", "en-US-RogerNeural", "en-US-SaraNeural", "en-US-SteffanNeural", "en-US-TonyNeural", ] AZURE_SPEECH_STT_LANGUAGES = [ "en-US", "en-GB", "en-AU", "en-CA", "en-IN", "es-ES", "es-MX", "fr-FR", "fr-CA", "de-DE", "it-IT", "ja-JP", "ko-KR", "zh-CN", "pt-BR", "pt-PT", "ru-RU", "ar-SA", "nl-NL", "pl-PL", "hi-IN", ] AZURE_EMBEDDING_MODELS = [ "text-embedding-3-small", "text-embedding-ada-002", ]