mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-07 08:26:10 +00:00
Merge 2526992518 into bb72815e70
This commit is contained in:
commit
db8d54608a
1 changed files with 7 additions and 0 deletions
|
|
@ -2036,6 +2036,13 @@ async def test_model_connection(
|
|||
# Clean the result for display
|
||||
cleaned_result: Final = _clean_endpoint_data({**litellm_params, **result}, details=True)
|
||||
|
||||
if "error" in result:
|
||||
verbose_proxy_logger.error(
|
||||
"test_model_connection failure for model '%s': %s",
|
||||
litellm_params.get("model", "unknown"),
|
||||
result["error"],
|
||||
)
|
||||
|
||||
return {
|
||||
"status": "error" if "error" in result else "success",
|
||||
"result": cleaned_result,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue