Chat with Agent Smith

@for (entry of history; track entry; let i = $index) {
@if (entry.role === 'user') {
{{ entry.text }}
} @if (entry.role === 'model') {
@if (entry.text) { {{ entry.text }} } @if (entry.toolRequest) {
@switch (entry.toolRequest.name) { @case ('weatherTool') {

sunny_snowing {{ getWeatherLocation(entry.toolRequest) }} 27°C

Warn sunny day with a mix of sun and snow.
} @case ('datePicker') {
Choose a date MM/DD/YYYY
} @default {
Oops... unknown tool {{ entry.toolRequest.name }}
} }
}
}
}
Chat input @if (loading) { }