chore: readme update

This commit is contained in:
Brooklyn Nicholson
2026-04-07 20:24:46 -05:00
parent 29f2610e4b
commit d9d0ac06b9
7 changed files with 281 additions and 140 deletions

View File

@@ -37,7 +37,7 @@ export const Thinking = memo(function Thinking({
{tools.map(tool => (
<Text color={t.color.dim} key={tool.id}>
<Spinner color={t.color.amber} /> {TOOL_VERBS[tool.name] ?? tool.name}
{tool.context ? ` ${tool.context}` : ''}
{tool.context ? `: ${tool.context}` : ''}
</Text>
))}