From 8ca823117613496378cc63a26c071d1dfa4399ec Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Mon, 27 Apr 2026 12:04:28 +0800 Subject: [PATCH] feat: reorder token usage output for improved clarity --- astrbot/builtin_stars/builtin_commands/commands/conversation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astrbot/builtin_stars/builtin_commands/commands/conversation.py b/astrbot/builtin_stars/builtin_commands/commands/conversation.py index 751458c37..b9408191e 100644 --- a/astrbot/builtin_stars/builtin_commands/commands/conversation.py +++ b/astrbot/builtin_stars/builtin_commands/commands/conversation.py @@ -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" )