From 7c747af7a6bb51e70190c16ba84af9bb7fe1a24d Mon Sep 17 00:00:00 2001 From: Victor Dibia Date: Thu, 13 Feb 2025 20:17:48 -0800 Subject: [PATCH] fix bug with type guard --- .../autogen-studio/frontend/src/components/types/guards.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python/packages/autogen-studio/frontend/src/components/types/guards.ts b/python/packages/autogen-studio/frontend/src/components/types/guards.ts index 63e6a5a1c706..726a40a35188 100644 --- a/python/packages/autogen-studio/frontend/src/components/types/guards.ts +++ b/python/packages/autogen-studio/frontend/src/components/types/guards.ts @@ -34,8 +34,7 @@ const PROVIDERS = { // Models OPENAI: "autogen_ext.models.openai.OpenAIChatCompletionClient", - AZURE_OPENAI: - "autogen_ext.models.azure_openai.AzureOpenAIChatCompletionClient", + AZURE_OPENAI: "autogen_ext.models.openai.AzureOpenAIChatCompletionClient", // Tools FUNCTION_TOOL: "autogen_core.tools.FunctionTool",