From 7ef220e5797bfc4305b83804d7a72c73db2e60f9 Mon Sep 17 00:00:00 2001 From: gramps Date: Mon, 13 Jul 2026 16:35:59 -0700 Subject: [PATCH] feat: brand response avatar as cAIc instead of AI --- templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.html b/templates/index.html index 8641a09..d140334 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1450,7 +1450,7 @@ function appendMessage(role, content, animate, isSearch = false, afterEl = null) const timeStr = months[now.getMonth()] + ' ' + String(now.getDate()).padStart(2,'0') + ', ' + now.getFullYear() + ' ' + String(now.getHours()).padStart(2,'0') + ':' + String(now.getMinutes()).padStart(2,'0') + ':' + String(now.getSeconds()).padStart(2,'0') + '.' + String(Math.floor(ms / 10)).padStart(2,'0'); const textHtml = content ? renderMarkdown(content) : ''; const copyIcon = role === 'user' && content ? `📋` : ''; - div.innerHTML = `
${role === 'user' ? 'YOU' : 'AI'}
${role === 'assistant' ? modelLabel() : role}${role === 'user' ? ' ' + timeStr + '' : ''}
${textHtml}${copyIcon}
${role === 'assistant' ? '
' : ''}
`; + div.innerHTML = `
${role === 'user' ? 'YOU' : 'cAIc'}
${role === 'assistant' ? modelLabel() : role}${role === 'user' ? ' ' + timeStr + '' : ''}
${textHtml}${copyIcon}
${role === 'assistant' ? '
' : ''}
`; if (role === 'user') { const pair = document.createElement('div'); pair.className = 'msg-pair' + (isSearch ? ' search-pair' : '');