We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 163ed21 commit a313dfdCopy full SHA for a313dfd
crates/chat-cli/src/cli/chat/mod.rs
@@ -19,7 +19,6 @@ mod token_counter;
19
pub mod tool_manager;
20
pub mod tools;
21
pub mod util;
22
-
23
use std::borrow::Cow;
24
use std::collections::{
25
HashMap,
@@ -2865,7 +2864,10 @@ impl ChatSession {
2865
2864
self.stdout,
2866
style::Print("\n\n"),
2867
style::SetForegroundColor(Color::Yellow),
2868
- style::Print(format!("Tool validation failed: {}\n Retrying the request...", error_message)),
+ style::Print(format!(
+ "Tool validation failed: {}\n Retrying the request...",
2869
+ error_message
2870
+ )),
2871
style::ResetColor,
2872
style::Print("\n"),
2873
);
0 commit comments