+ {messages.length === 0 && (
+
+
+ 有什么我可以帮助你的?
+
+ 输入你的问题,AI 助手将为你解答
+
+
+ )}
+
+ {messages.map(msg => (
+
+
:
}
+ style={{
+ backgroundColor: msg.role === 'user' ? token.colorPrimary : token.colorSuccess,
+ flexShrink: 0,
+ }}
+ />
+
+ {msg.content}
+
+
+ ))}
+
+ {loading && (
+
+
}
+ style={{ backgroundColor: token.colorSuccess, flexShrink: 0 }}
+ />
+
+ 思考中...
+
+
+ )}
+
+
+