feat: added performance statistics info when using embedded LLM

This commit is contained in:
Xiaohan-Tian
2026-05-14 19:05:13 -07:00
parent 98c2b97413
commit eb1c7bd2fc
8 changed files with 58 additions and 8 deletions
+1
View File
@@ -434,6 +434,7 @@ const ChatBox: React.FC<ChatBoxProps> = ({ isVisible }) => {
key={message.id}
content={message.content}
isStreaming={message.isStreaming}
performanceInfo={message.performanceInfo}
onAbort={message.isStreaming ? handleAbort : undefined}
/>
)