Configure Azure OpenAI as an LLM provider for translation generation.
azure_openai
llm.profiles.<name>.provider
{ "llm": { "profiles": { "default": { "provider": "azure_openai", "model": "gpt-4.1-mini", "prompt": "Translate from {{source}} to {{target}}:\n\n{{input}}" } } } }
# Example: https://<resource>.openai.azure.com/openai/v1 export AZURE_OPENAI_BASE_URL="https://<resource>.openai.azure.com/openai/v1" export AZURE_OPENAI_API_KEY="your-azure-openai-api-key"
Was this page helpful?