Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions tests/local_testing/test_batch_completion_return_exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,19 @@


def test_batch_completion_return_exceptions_true():
"""Test batch_completion's return_exceptions."""
"""Test batch_completion's return_exceptions.

With an invalid API key, we expect an error to be returned rather than raised.
The error type may be AuthenticationError (from API) or InternalServerError
(from connection issues), depending on network conditions.
"""
res = litellm.batch_completion(
model="gpt-3.5-turbo",
messages=[msg1, msg2],
api_key="sk_xxx", # deliberately set invalid key
)

assert isinstance(res[0], litellm.exceptions.AuthenticationError)
# batch_completion should return exceptions rather than raise them
# Accept either AuthenticationError (API rejected key) or InternalServerError (network issues)
assert isinstance(res[0], (litellm.exceptions.AuthenticationError, litellm.exceptions.InternalServerError)), \
f"Expected AuthenticationError or InternalServerError, got {type(res[0])}"
Loading