From 30e6a72c4fd4ef64f1f9e91b3b01abd8037c3479 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 20 May 2026 16:56:24 +0000 Subject: [PATCH 1/2] Initial plan From 4ce60f4cd1a749bc7492a19a48fbf94464738bd9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 20 May 2026 17:01:24 +0000 Subject: [PATCH 2/2] Remove the 0.25 CPU option for hosted agents Update DefaultCpu from 0.25 to 0.5 and DefaultMemory from 0.5Gi to 1Gi. Remove the 0.25 cores, 0.5Gi memory entry from ResourceTiers. Agent-Logs-Url: https://github.com/Azure/azure-dev/sessions/489bc895-9932-43a0-93ac-baea94db4b97 Co-authored-by: therealjohn <1501196+therealjohn@users.noreply.github.com> --- .../extensions/azure.ai.agents/internal/project/config.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cli/azd/extensions/azure.ai.agents/internal/project/config.go b/cli/azd/extensions/azure.ai.agents/internal/project/config.go index 2fd95882e99..eeaafdfcd8e 100644 --- a/cli/azd/extensions/azure.ai.agents/internal/project/config.go +++ b/cli/azd/extensions/azure.ai.agents/internal/project/config.go @@ -13,8 +13,8 @@ import ( // Default container settings constants const ( - DefaultMemory = "0.5Gi" - DefaultCpu = "0.25" + DefaultMemory = "1Gi" + DefaultCpu = "0.5" ) // CodeDeployRegions lists the regions that currently support code deploy (ZIP upload). @@ -39,7 +39,6 @@ func (t ResourceTier) String() string { // ResourceTiers defines the available container resource allocation options. var ResourceTiers = []ResourceTier{ {Cpu: DefaultCpu, Memory: DefaultMemory}, - {Cpu: "0.5", Memory: "1Gi"}, {Cpu: "1", Memory: "2Gi"}, {Cpu: "2", Memory: "4Gi"}, }