fix: update select_llm_provider return type hint to tuple[str, str | None]
This commit is contained in:
parent
fe47dd0983
commit
fcc6a31369
|
|
@ -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 = [
|
||||
|
|
|
|||
Loading…
Reference in New Issue