forked from phoenix/litellm-mirror
fix linting issue
This commit is contained in:
parent
076affbff2
commit
b64306d633
2 changed files with 2 additions and 2 deletions
|
@ -1327,7 +1327,7 @@ def load_test_model(
|
|||
|
||||
def validate_environment(model: Optional[str]=None) -> dict:
|
||||
keys_in_environment = False
|
||||
missing_keys = []
|
||||
missing_keys: List[str] = []
|
||||
|
||||
if model is None:
|
||||
return {"keys_in_environment": keys_in_environment, "missing_keys": missing_keys}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "litellm"
|
||||
version = "0.1.773"
|
||||
version = "0.1.774"
|
||||
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