feat: tuiのトークン集計表示の修正

This commit is contained in:
2026-05-04 00:01:37 +09:00
parent 9a06494bc6
commit e6b6df09b8
6 changed files with 39 additions and 11 deletions
+4 -1
View File
@@ -43,7 +43,10 @@ pub enum Block {
Compact(CompactEvent),
TurnStats {
requests: usize,
input_tokens: u64,
/// Net tokens uploaded across the turn's LLM requests
/// (cache reads excluded; cache writes included). Same value
/// the status line accumulates while the turn is in flight.
upload_tokens: u64,
output_tokens: u64,
},
}