mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 12:25:20 +00:00
refac
This commit is contained in:
parent
3da6049a4a
commit
0ea421ea20
1 changed files with 7 additions and 6 deletions
|
|
@ -329,7 +329,8 @@ def merge_ollama_models_lists(model_lists):
|
||||||
for idx, model_list in enumerate(model_lists):
|
for idx, model_list in enumerate(model_lists):
|
||||||
if model_list is not None:
|
if model_list is not None:
|
||||||
for model in model_list:
|
for model in model_list:
|
||||||
id = model["model"]
|
id = model.get("model")
|
||||||
|
if id is not None:
|
||||||
if id not in merged_models:
|
if id not in merged_models:
|
||||||
model["urls"] = [idx]
|
model["urls"] = [idx]
|
||||||
merged_models[id] = model
|
merged_models[id] = model
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue