This commit is contained in:
Nicolas Mowen 2026-05-19 10:51:07 -06:00
parent bd0ce61ab9
commit 84cb259283

View File

@ -203,7 +203,10 @@ export default function ChatPage() {
const hasContent = !!msg.content?.trim(); const hasContent = !!msg.content?.trim();
const hasReasoning = !!msg.reasoning?.trim(); const hasReasoning = !!msg.reasoning?.trim();
const showProcessing = const showProcessing =
isLastAssistant && isLoading && !hasContent && !hasReasoning; isLastAssistant &&
isLoading &&
!hasContent &&
!hasReasoning;
// Hide empty placeholder only when there are no tool calls // Hide empty placeholder only when there are no tool calls
// and no reasoning streaming yet // and no reasoning streaming yet