Compare commits

..

No commits in common. "main" and "v1.67.3.dev1" have entirely different histories.

2 changed files with 2 additions and 4 deletions

View file

@ -947,8 +947,6 @@ class BaseLLMChatTest(ABC):
second_response.choices[0].message.content is not None
or second_response.choices[0].message.tool_calls is not None
)
except litellm.ServiceUnavailableError:
pytest.skip("Model is overloaded")
except litellm.InternalServerError:
pytest.skip("Model is overloaded")
except litellm.RateLimitError:

View file

@ -151,7 +151,7 @@ export default function CreateKeyPage() {
if (redirectToLogin) {
window.location.href = (proxyBaseUrl || "") + "/sso/key/generate"
}
}, [redirectToLogin])
}, [token, authLoading])
useEffect(() => {
if (!token) {
@ -223,7 +223,7 @@ export default function CreateKeyPage() {
}
}, [accessToken, userID, userRole]);
if (authLoading || redirectToLogin) {
if (authLoading) {
return <LoadingScreen />
}