From be133b8b55f5c980a0d64d5bb5539fbad9b7ac76 Mon Sep 17 00:00:00 2001 From: greenie-msft Date: Wed, 10 Dec 2025 16:50:57 -0800 Subject: [PATCH] change model back to gpt 4o mini due to perf slowness --- .../dotnet/AiAgentTravelPlanOrchestrator/infra/main.bicep | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/durable-functions/dotnet/AiAgentTravelPlanOrchestrator/infra/main.bicep b/samples/durable-functions/dotnet/AiAgentTravelPlanOrchestrator/infra/main.bicep index 808bcef..3f5f6b1 100644 --- a/samples/durable-functions/dotnet/AiAgentTravelPlanOrchestrator/infra/main.bicep +++ b/samples/durable-functions/dotnet/AiAgentTravelPlanOrchestrator/infra/main.bicep @@ -62,15 +62,15 @@ param principalId string = deployer().objectId param aiServicesName string = 'agentaiservices' @description('Model name for deployment') -param modelName string = 'gpt-5-mini' +param modelName string = 'gpt-4o-mini' @description('Model format for deployment') param modelFormat string = 'OpenAI' @description('Model version for deployment') -param modelVersion string = '2025-08-07' +param modelVersion string = '2024-07-18' -@description('Model deployment SKU name') +@description('Cognitive Services account SKU name') param modelSkuName string = 'S0' @description('Model deployment capacity')