Compare commits

...

2 Commits

Author SHA1 Message Date
KK 73327cde24 chore: clarify SDK name in comment 2026-03-31 22:47:20 +08:00
KK 34a7490175 chore: update select_llm_provider docstring to be provider-agnostic 2026-03-31 22:37:42 +08:00
1 changed files with 3 additions and 3 deletions

View File

@ -188,11 +188,11 @@ 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
("Google", None), # google-generativeai SDK manages its own endpoint internally
("Anthropic", "https://api.anthropic.com/"),
("xAI", "https://api.x.ai/v1"),
("Openrouter", "https://openrouter.ai/api/v1"),