@if (!isWide) {
} @if (persistent && sidebarOpen) {
Conversations
    @if (conversations.length === 0) {
  • Aucune conversation
  • } @for (c of conversations; track c) {
  • {{ c.title }}
  • }
}
@if (persistent) { }
@if (persistent && currentConversationId) { @if (!editingTitle) {

{{ currentTitle || 'Nouvelle conversation' }}

} @else { } } @else {

Assistant IA

}
@if (usage) {
@if (usageHasMax) {
}
Contexte : {{ usageTotal }}@if (usageHasMax) { / {{ usage.max }} } tokens @if (usageHasMax) { {{ usagePercent }}% }
}
@if (messages.length === 0 && !currentAssistantText) {
} @for (m of messages; track m) { @if (m.role === 'user') {
{{ m.content }}
} @if (m.role === 'assistant') {
} } @if (currentAssistantText) {
} @if (isStreaming && !currentAssistantText) {
} @if (errorMessage) {
{{ errorMessage }}
}
@if (primaryAction) {
} @if (quickSuggestions.length) {

Suggestions rapides :

@for (s of quickSuggestions; track s) { }
}