fixing linting issues

This commit is contained in:
Krrish Dholakia 2023-08-19 20:30:00 -07:00
parent c45dad19cc
commit 366ff43761
2 changed files with 1 additions and 10 deletions

View file

@ -85,15 +85,6 @@ class AnthropicLLM:
## LOGGING
self.logging_obj.pre_call(input=prompt, api_key=self.api_key, additional_args={"complete_input_dict": data})
logging(
model=model,
input=prompt,
additional_args={
"litellm_params": litellm_params,
"optional_params": optional_params,
},
logger_fn=logger_fn,
)
## COMPLETION CALL
response = requests.post(
self.completion_url, headers=self.headers, data=json.dumps(data)

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "litellm"
version = "0.1.430"
version = "0.1.431"
description = "Library to easily interface with LLM API providers"
authors = ["BerriAI"]
license = "MIT License"