# Generated by scripts/provision_azure.sh — never commit the real file. # Copy to .audio-roundtrip.env and fill in, or just run scripts/provision_azure.sh. # Must end with a trailing slash. sql/02_set_vars.sql rejects it otherwise, # because the deployment path is concatenated onto it. AZURE_OPENAI_ENDPOINT=https://your-account.openai.azure.com/ AZURE_OPENAI_KEY=replace-me # The version these scripts were verified against. AZURE_OPENAI_API_VERSION=2025-04-01-preview # Deployment names, not model names. provision_azure.sh creates deployments # called "tts" (model tts:001) and "whisper" (model whisper:001). AZURE_TTS_DEPLOYMENT=tts AZURE_WHISPER_DEPLOYMENT=whisper # Used by scripts/cleanup_azure.sh. AZURE_RESOURCE_GROUP=rg-pg-durable-audio-roundtrip AZURE_ACCOUNT_NAME=your-account # Region note: the account must be in a region that offers BOTH tts and # whisper. northcentralus and swedencentral both do, on the plain Standard SKU. # westeurope has whisper but no tts. eastus2 has whisper but only the # GlobalStandard gpt-4o-mini-tts, which is a different model name. # Set LOCATION=swedencentral before running provision_azure.sh to use the # alternative.