We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09088fd commit c9c7858Copy full SHA for c9c7858
1 file changed
eval_protocol/pytest/exception_config.py
@@ -8,7 +8,7 @@
8
9
import backoff
10
11
-
+import litellm
12
import requests
13
import httpx
14
@@ -28,6 +28,12 @@
28
httpx.TimeoutException,
29
httpx.NetworkError,
30
httpx.RemoteProtocolError,
31
+ litellm.exceptions.RateLimitError,
32
+ litellm.exceptions.InternalServerError,
33
+ litellm.exceptions.Timeout,
34
+ litellm.exceptions.NotFoundError,
35
+ litellm.exceptions.BadRequestError, # remove this once we have a long term solution
36
+ litellm.exceptions.ServiceUnavailableError,
37
}
38
39
0 commit comments