From e969eb640833169c2722c112a721334ea400d822 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Brand=C3=A3o?= Date: Tue, 12 Aug 2025 13:52:57 -0700 Subject: [PATCH] Changed default cloud for ConnectionSettings to be PROD --- .../agents/copilotstudio/client/connection_settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/microsoft-agents-copilotstudio-client/microsoft/agents/copilotstudio/client/connection_settings.py b/libraries/microsoft-agents-copilotstudio-client/microsoft/agents/copilotstudio/client/connection_settings.py index 6e8bd61d..6b8e6bc7 100644 --- a/libraries/microsoft-agents-copilotstudio-client/microsoft/agents/copilotstudio/client/connection_settings.py +++ b/libraries/microsoft-agents-copilotstudio-client/microsoft/agents/copilotstudio/client/connection_settings.py @@ -27,6 +27,6 @@ def __init__( if not self.agent_identifier: raise ValueError("Agent Identifier must be provided") - self.cloud = cloud or PowerPlatformCloud.UNKNOWN + self.cloud = cloud or PowerPlatformCloud.PROD self.copilot_agent_type = copilot_agent_type or AgentType.PUBLISHED self.custom_power_platform_cloud = custom_power_platform_cloud