linting fixes

This commit is contained in:
ishaan-jaff 2023-08-22 15:17:14 -07:00
parent 7bb633e190
commit d47476165f
6 changed files with 52 additions and 32 deletions

View file

@ -17,7 +17,7 @@ from litellm.utils import (
install_and_import,
CustomStreamWrapper,
read_config_args,
completion_with_fallbacks
completion_with_fallbacks,
)
from .llms.anthropic import AnthropicLLM
from .llms.huggingface_restapi import HuggingfaceRestAPILLM
@ -187,7 +187,7 @@ def completion(
response = openai.ChatCompletion.create(
engine=model, messages=messages, **optional_params
)
## LOGGING
logging.post_call(
input=messages,