From fb6c2df53b3412da9ed3ec7b1f80f106b0f8061a Mon Sep 17 00:00:00 2001 From: immersir Date: Wed, 11 Feb 2026 05:36:01 +0000 Subject: [PATCH] feat(chat): show usage stats with --verbose --- src/subcommands/chat/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/subcommands/chat/index.tsx b/src/subcommands/chat/index.tsx index 6d1cd9c9..c7d47fdd 100644 --- a/src/subcommands/chat/index.tsx +++ b/src/subcommands/chat/index.tsx @@ -230,7 +230,7 @@ chatCommand.action(async (model, options: ChatCommandOptions) => { client, chat, { - stats: options.stats, + stats: options.stats || options.verbose === true, ttl, }, llm, @@ -246,7 +246,7 @@ chatCommand.action(async (model, options: ChatCommandOptions) => { process.exit(1); } await handleNonInteractiveChat(llm, chat, providedPrompt, logger, { - stats: options.stats, + stats: options.stats || options.verbose === true, ttl, }); } else {