Skip to content

Commit 951cf8c

Browse files
authored
Merge branch 'qv2' into qv2Sync
2 parents 711c5af + 13feeaa commit 951cf8c

File tree

1 file changed

+10
-0
lines changed
  • crates/chat-cli/src/cli/chat

1 file changed

+10
-0
lines changed

crates/chat-cli/src/cli/chat/mod.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2985,6 +2985,16 @@ impl ChatSession {
29852985
)?;
29862986
}
29872987

2988+
// Display continuation ID if available and debug mode is enabled
2989+
if std::env::var_os("Q_SHOW_CONTINUATION_IDS").is_some() {
2990+
queue!(
2991+
self.stdout,
2992+
style::SetForegroundColor(Color::DarkGrey),
2993+
style::Print(format!("({})\n", self.conversation.current_continuation_id())),
2994+
style::SetForegroundColor(Color::Reset)
2995+
)?;
2996+
}
2997+
29882998
for (i, citation) in &state.citations {
29892999
queue!(
29903000
self.stdout,

0 commit comments

Comments
 (0)