agent-history.html
13 lines1
2
3
4
5
6
7
8
9
10
11
12
13
{{range $msg := .Messages}}
{{if eq $msg.Role "user"}}
<div class="flex justify-end">
<div class="max-w-[80%] rounded-xl rounded-br-sm px-3 py-2 bg-indigo-50 text-sm text-slate-700 whitespace-pre-wrap">{{$msg.Content}}</div>
</div>
{{else if eq $msg.Role "assistant"}}
{{if $msg.Content}}
<div class="flex justify-start">
<div class="max-w-[80%] rounded-xl rounded-bl-sm px-3 py-2 bg-slate-50 border border-slate-100 text-sm text-slate-600 whitespace-pre-wrap">{{$msg.Content}}</div>
</div>
{{end}}
{{end}}
{{end}}