mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-13 23:11:40 +00:00
fix mypy error
This commit is contained in:
parent
b7550ea2d4
commit
fac3dd51d4
1 changed files with 3 additions and 3 deletions
|
|
@ -181,9 +181,9 @@ class UnifiedLLMGuardrails(CustomLogger):
|
|||
if user_api_key_dict.request_route is not None:
|
||||
call_types = get_call_types_for_route(user_api_key_dict.request_route)
|
||||
if call_types is not None:
|
||||
call_type = call_types[0]
|
||||
call_type = call_types[0] # type: ignore
|
||||
if call_type is None:
|
||||
call_type = _infer_call_type(call_type=None, completion_response=response)
|
||||
call_type = _infer_call_type(call_type=None, completion_response=response) # type: ignore
|
||||
|
||||
if call_type is None:
|
||||
return response
|
||||
|
|
@ -294,7 +294,7 @@ class UnifiedLLMGuardrails(CustomLogger):
|
|||
call_type = call_types[0]
|
||||
|
||||
if call_type is None:
|
||||
call_type = _infer_call_type(call_type=None, completion_response=item)
|
||||
call_type = _infer_call_type(call_type=None, completion_response=item) # type: ignore
|
||||
|
||||
# If call type not supported, just pass through all chunks
|
||||
if (
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue