forked from phoenix/litellm-mirror
fix linting error
This commit is contained in:
parent
4d253f45d8
commit
c5df95c560
2 changed files with 2 additions and 2 deletions
|
@ -931,7 +931,7 @@ def get_optional_params( # use the openai defaults
|
|||
return optional_params
|
||||
return optional_params
|
||||
|
||||
def get_llm_provider(model: str, custom_llm_provider: str = ""):
|
||||
def get_llm_provider(model: str, custom_llm_provider: Optional[str] = None):
|
||||
try:
|
||||
# check if llm provider provided
|
||||
if custom_llm_provider:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "litellm"
|
||||
version = "0.1.602"
|
||||
version = "0.1.603"
|
||||
description = "Library to easily interface with LLM API providers"
|
||||
authors = ["BerriAI"]
|
||||
license = "MIT License"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue