From 35c30d1a4adf660ae2799fec8a22f38d2acfb4c8 Mon Sep 17 00:00:00 2001 From: Rajaie AlKorani Date: Sun, 22 Jun 2025 23:11:33 -0400 Subject: [PATCH] fix azure LLM key (#2769) --- skyvern/cli/llm_setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skyvern/cli/llm_setup.py b/skyvern/cli/llm_setup.py index f88d5fca..ee141408 100644 --- a/skyvern/cli/llm_setup.py +++ b/skyvern/cli/llm_setup.py @@ -120,7 +120,7 @@ def setup_llm_providers() -> None: update_or_add_env_var("AZURE_API_BASE", azure_api_base) update_or_add_env_var("AZURE_API_VERSION", azure_api_version) update_or_add_env_var("ENABLE_AZURE", "true") - model_options.append("AZURE_OPENAI_GPT4O") + model_options.append("AZURE_OPENAI") else: update_or_add_env_var("ENABLE_AZURE", "false")