From fcc6a313690360d292934fd252887a1529945eb7 Mon Sep 17 00:00:00 2001 From: KK Date: Tue, 31 Mar 2026 16:47:45 +0800 Subject: [PATCH] fix: update select_llm_provider return type hint to tuple[str, str | None] --- cli/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/utils.py b/cli/utils.py index 290a4b67..099388b2 100644 --- a/cli/utils.py +++ b/cli/utils.py @@ -187,7 +187,7 @@ def select_deep_thinking_agent(provider) -> str: return choice -def select_llm_provider() -> tuple[str, str]: +def select_llm_provider() -> tuple[str, str | None]: """Select the OpenAI api url using interactive selection.""" # Define OpenAI api options with their corresponding endpoints BASE_URLS = [