mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 20:35:19 +00:00
fix: prefix issue
This commit is contained in:
parent
bd1dae2c66
commit
d5c65e36c9
1 changed files with 3 additions and 1 deletions
|
|
@ -313,7 +313,9 @@ async def get_all_models_responses() -> list:
|
|||
prefix_id = api_config.get("prefix_id", None)
|
||||
|
||||
if prefix_id:
|
||||
for model in response["data"]:
|
||||
for model in (
|
||||
response if isinstance(response, list) else response.get("data", [])
|
||||
):
|
||||
model["id"] = f"{prefix_id}.{model['id']}"
|
||||
|
||||
log.debug(f"get_all_models:responses() {responses}")
|
||||
|
|
|
|||
Loading…
Reference in a new issue