feat: bump project version to 1.28.0 across all configuration files and package manifests

This commit is contained in:
2025-11-08 01:11:31 +00:00
parent abbfd2c6ef
commit 2e0a1e4928
53 changed files with 369 additions and 259 deletions
+2 -1
View File
@@ -97,7 +97,8 @@ def list_models(model_list_url, api_key):
response = http_client.get(model_list_url, headers=headers, db_conn=None)
if response.get("error"):
return {"error": response.get("text", "HTTP error")}
data = json.loads(response["text"])
response_data = response["text"]
data = json.loads(response_data)
return data.get("data", [])
except Exception as e:
return {"error": str(e)}