feat: reorder token usage output for improved clarity

This commit is contained in:
Soulter
2026-04-27 12:04:28 +08:00
parent 6ba01a4775
commit 8ca8231176

View File

@@ -290,8 +290,8 @@ class ConversationCommands:
ret = (
f"📊 Token usage (ID: {cid[:8]}...)\n"
f"Total: {total_tokens:,}\n"
f"Input (other): {total_input_other:,}\n"
f"Input (cached): {total_input_cached:,}\n"
f"Input (other): {total_input_other:,}\n"
f"Output: {total_output:,}\n"
)