From 7d3a09f3dbb7ee123fb9ef3cbe649f91b2acffb0 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Mon, 27 Apr 2026 12:59:04 +0800 Subject: [PATCH] feat: update stats command to clarify conversation token usage display --- 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 948974303..9dcf36909 100644 --- a/astrbot/builtin_stars/builtin_commands/commands/conversation.py +++ b/astrbot/builtin_stars/builtin_commands/commands/conversation.py @@ -301,7 +301,7 @@ class ConversationCommands: total_tokens = total_input_other + total_input_cached + total_output ret = ( - f"📊 Token usage (ID: {cid[:8]}...)\n" + f"📊 Conversation Token usage (ID: {cid[:8]}...)\n" f"Total: {total_tokens:,}\n" f"Input (cached): {total_input_cached:,}\n" f"Input (other): {total_input_other:,}\n"