mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-25 00:51:20 +00:00
chore: fmt
This commit is contained in:
parent
a2c0597ae4
commit
a27167fb30
1 changed files with 8 additions and 2 deletions
|
|
@ -67,7 +67,11 @@ function StreamCursor({ active = false, color, dimColor }: { active?: boolean; c
|
|||
return () => clearInterval(id)
|
||||
}, [])
|
||||
|
||||
return <Text color={color} dimColor={dimColor}>{active && on ? '▍' : ' '}</Text>
|
||||
return (
|
||||
<Text color={color} dimColor={dimColor}>
|
||||
{active && on ? '▍' : ' '}
|
||||
</Text>
|
||||
)
|
||||
}
|
||||
|
||||
// ── Thinking (pre-tool fallback) ─────────────────────────────────────
|
||||
|
|
@ -271,7 +275,9 @@ export const ToolTrail = memo(function ToolTrail({
|
|||
|
||||
return (
|
||||
<Box flexDirection="column">
|
||||
{busy && !groups.length && <Thinking mode={thinkingMode} reasoning={reasoning} streaming={reasoningStreaming} t={t} />}
|
||||
{busy && !groups.length && (
|
||||
<Thinking mode={thinkingMode} reasoning={reasoning} streaming={reasoningStreaming} t={t} />
|
||||
)}
|
||||
{!busy && !groups.length && reasoningTail && (
|
||||
<Detail color={t.color.dim} content={reasoningTail} dimColor key="cot" />
|
||||
)}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue