Commit 1fb4c602 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix: playground

parent 0c7f0f44
...@@ -321,12 +321,10 @@ ...@@ -321,12 +321,10 @@
<div class="max-w-full"> <div class="max-w-full">
<Selector <Selector
placeholder={$i18n.t('Select a model')} placeholder={$i18n.t('Select a model')}
items={$models items={$models.map((model) => ({
.filter((model) => model.name !== 'hr')
.map((model) => ({
value: model.id, value: model.id,
label: model.custom_info?.name ?? model.name, label: model.name,
info: model model: 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