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

Start a conversation

Ask anything to get started.

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