Chat

@if (messages().length === 0) {

Start a conversation

Ask anything to get started

} @else {
@for (msg of messages(); track msg.id) { @if (msg.role === 'user') {
You

{{ msg.content }}

} @else if (msg.isError) {

{{ msg.content }}

} @else {
Assistant

{{ msg.content }}

} } @if (isLoading()) {
Assistant is typing…
}
}