This commit is contained in:
Nicolas Mowen 2026-05-19 10:11:34 -06:00
parent c0d784a45b
commit 3ca97ed3d0
3 changed files with 6 additions and 3 deletions

View File

@ -62,7 +62,7 @@
"tokens_per_second": "{{rate}} t/s"
},
"reasoning": {
"thinking": "Thinking…",
"active": "Reasoning…",
"show": "Show reasoning",
"hide": "Hide reasoning"
}

View File

@ -47,7 +47,7 @@ export function ReasoningBubble({
};
const label = !answerStarted
? t("reasoning.thinking")
? t("reasoning.active")
: open
? t("reasoning.hide")
: t("reasoning.show");

View File

@ -242,7 +242,10 @@ export default function ChatPage() {
<span className="size-2 animate-bounce rounded-full bg-muted-foreground/60 [animation-delay:-0.15s]" />
<span className="size-2 animate-bounce rounded-full bg-muted-foreground/60" />
</div>
) : (
) : msg.role === "assistant" &&
!hasContent &&
hasReasoning &&
!isComplete ? null : (
<MessageBubble
role={msg.role}
content={msg.content}