From 34a74901751d70a649f8eec0b92c01ca4964d346 Mon Sep 17 00:00:00 2001 From: KK Date: Tue, 31 Mar 2026 22:37:42 +0800 Subject: [PATCH] chore: update select_llm_provider docstring to be provider-agnostic --- cli/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/utils.py b/cli/utils.py index 099388b2..03411543 100644 --- a/cli/utils.py +++ b/cli/utils.py @@ -188,8 +188,8 @@ def select_deep_thinking_agent(provider) -> str: return choice def select_llm_provider() -> tuple[str, str | None]: - """Select the OpenAI api url using interactive selection.""" - # Define OpenAI api options with their corresponding endpoints + """Select the LLM provider and its API URL using interactive selection.""" + # Define LLM provider options with their corresponding endpoints BASE_URLS = [ ("OpenAI", "https://api.openai.com/v1"), ("Google", None), # google-genai SDK manages its own endpoint internally