Skip to content

Commit 6d0712f

Browse files
authored
fix(ui): not all models comes from gallery (mudler#4915)
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
1 parent bbbb28e commit 6d0712f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

core/http/views/chat.html

+4
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,10 @@ <h3 class="text-md font-medium">{{ $model }}</h3>
229229
<i class="fa-solid fa-comments mr-2"></i>
230230
{{ if $model }}
231231
{{ $galleryConfig:= index $allGalleryConfigs $model}}
232+
{{ if $galleryConfig }}
232233
{{ if $galleryConfig.Icon }}<img src="{{$galleryConfig.Icon}}" class="rounded-lg w-8 h-8 mr-2">{{end}}
233234
{{ end }}
235+
{{ end }}
234236
<h1 class="text-lg font-semibold">
235237
Chat {{ if .Model }} with {{.Model}} {{ end }}
236238
</h1>
@@ -262,7 +264,9 @@ <h1 class="text-lg font-semibold">
262264
</template>
263265
<template x-if="message.role != 'user'">
264266
<div class="flex items-center space-x-2">
267+
{{ if $galleryConfig }}
265268
{{ if $galleryConfig.Icon }}<img src="{{$galleryConfig.Icon}}" class="rounded-lg mt-2 max-w-8 max-h-8">{{end}}
269+
{{ end }}
266270
<div class="flex flex-col flex-1">
267271
<span class="text-xs font-semibold text-gray-400">{{if .Model}}{{.Model}}{{else}}Assistant{{end}}</span>
268272
<div class="flex-1 text-white flex items-center space-x-2">

0 commit comments

Comments
 (0)