Fix LLM validation and dashboard health hot paths

This commit is contained in:
2026-03-15 13:18:51 +03:00
parent 3928455189
commit a8563a8369
24 changed files with 1398 additions and 83 deletions

View File

@@ -205,8 +205,7 @@ async def test_connection(
)
try:
# Simple test call
await client.client.models.list()
await client.test_runtime_connection()
return {"success": True, "message": "Connection successful"}
except Exception as e:
return {"success": False, "error": str(e)}
@@ -242,8 +241,7 @@ async def test_provider_config(
)
try:
# Simple test call
await client.client.models.list()
await client.test_runtime_connection()
return {"success": True, "message": "Connection successful"}
except Exception as e:
return {"success": False, "error": str(e)}