fix(tui): stabilize live todo progress

This commit is contained in:
Brooklyn Nicholson
2026-04-26 15:55:38 -05:00
parent 1566f1eecc
commit f5552f92e2
14 changed files with 256 additions and 86 deletions

View File

@@ -116,6 +116,7 @@ export interface Msg {
thinkingTokens?: number
toolTokens?: number
tools?: string[]
todos?: TodoItem[]
}
export type Role = 'assistant' | 'system' | 'tool' | 'user'