mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
support using */*
This commit is contained in:
parent
35203cede7
commit
9863520376
5 changed files with 18 additions and 1 deletions
|
@ -4650,6 +4650,8 @@ def get_llm_provider(
|
|||
custom_llm_provider = "openai"
|
||||
elif model in litellm.empower_models:
|
||||
custom_llm_provider = "empower"
|
||||
elif model == "*":
|
||||
custom_llm_provider = "openai"
|
||||
if custom_llm_provider is None or custom_llm_provider == "":
|
||||
if litellm.suppress_debug_info == False:
|
||||
print() # noqa
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue