We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af51779 commit 6a74451Copy full SHA for 6a74451
examples/rig-integration/src/chat.rs
@@ -87,11 +87,7 @@ pub async fn output_agent(
87
content: impl std::fmt::Display,
88
output: &mut BufWriter<tokio::io::Stdout>,
89
) -> std::io::Result<()> {
90
- output
91
- .write_all(b"\x1b[1;34m\xF0\x9F\xA4\x96 Agent: \x1b[0m")
92
- .await?;
93
output.write_all(content.to_string().as_bytes()).await?;
94
- output.write_all(b"\n").await?;
95
output.flush().await?;
96
Ok(())
97
}
0 commit comments