File tree 1 file changed +4
-4
lines changed
crates/q_cli/src/cli/chat
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2065,14 +2065,14 @@ where
2065
2065
2066
2066
match warning_level {
2067
2067
TokenWarningLevel :: Critical => {
2068
- // Memory constraint warning without explicit character count
2068
+ // Memory constraint warning with gentler wording
2069
2069
execute ! (
2070
2070
self . output,
2071
- style:: SetForegroundColor ( Color :: Red ) ,
2071
+ style:: SetForegroundColor ( Color :: Yellow ) ,
2072
2072
style:: SetAttribute ( Attribute :: Bold ) ,
2073
- style:: Print ( "\n 🚨 CRITICAL: Conversation approaching maximum memory capacity .\n " ) ,
2073
+ style:: Print ( "\n ⚠️ This conversation is getting lengthy .\n " ) ,
2074
2074
style:: SetAttribute ( Attribute :: Reset ) ,
2075
- style:: Print ( "Use /compact IMMEDIATELY to avoid losing conversation context .\n \n " ) ,
2075
+ style:: Print ( "To ensure continued smooth operation, please use /compact to summarize the conversation.\n \n " ) ,
2076
2076
style:: SetForegroundColor ( Color :: Reset )
2077
2077
) ?;
2078
2078
} ,
You can’t perform that action at this time.
0 commit comments