From a28311328dcfe266e2d13a245862ead93c4a91cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=BE=E6=96=87=E9=94=8B0668000834?= Date: Fri, 13 Mar 2026 09:28:30 +0800 Subject: [PATCH] docs(config): add Azure OpenAI example to config.example.json Add Azure OpenAI configuration example to help users configure Azure OpenAI deployments with the correct API base URL format. Related to #1424 --- config/config.example.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/config.example.json b/config/config.example.json index b259df6f6..fb123a8c7 100644 --- a/config/config.example.json +++ b/config/config.example.json @@ -40,6 +40,12 @@ "model": "longcat/LongCat-Flash-Thinking", "api_key": "your-longcat-api-key" }, + { + "model_name": "azure-gpt-4o", + "model": "openai/gpt-4o", + "api_key": "your-azure-api-key", + "api_base": "https://your-resource.openai.azure.com/openai/deployments/your-deployment" + }, { "model_name": "loadbalanced-gpt-5.4", "model": "openai/gpt-5.4",