+ {aiAssistHistory.length === 0 ? (
+
+
+
+
+
{t.chatStart}
+
Start a conversation to activate specialized AI agents for code, design, SEO, and more.
+
+ ) : (
+ aiAssistHistory.map((msg, i) => (
+
+
+ {msg.role === "user" ? : }
+
+
+ {msg.agent && (
+
+ {AGENTS.find(a => a.id === msg.agent)?.label || msg.agent}
+
+ )}
+
+ {msg.content}
+
+
+ {msg.timestamp.toLocaleTimeString([], { hour: '2-digit', minute: '2-digit' })}
+
+
+
+ ))
+ )}
+ {isProcessing && (
+
+ )}
+
+
+ {/* Input Area */}
+