Commit e76a444e authored by Jun Siang Cheah's avatar Jun Siang Cheah
Browse files

feat: allow model config via config.json

parent df3675aa
...@@ -326,7 +326,7 @@ ...@@ -326,7 +326,7 @@
.filter((model) => model.name !== 'hr') .filter((model) => model.name !== 'hr')
.map((model) => ({ .map((model) => ({
value: model.id, value: model.id,
label: model.name, label: model.custom_info?.displayName ?? model.name,
info: model info: model
}))} }))}
bind:value={selectedModelId} bind:value={selectedModelId}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment