Skip to content

Commit 6a74451

Browse files
authored
fix: fix rig chat agent output format (#86)
1 parent af51779 commit 6a74451

File tree

1 file changed

+0
-4
lines changed
  • examples/rig-integration/src

1 file changed

+0
-4
lines changed

examples/rig-integration/src/chat.rs

-4
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,7 @@ pub async fn output_agent(
8787
content: impl std::fmt::Display,
8888
output: &mut BufWriter<tokio::io::Stdout>,
8989
) -> std::io::Result<()> {
90-
output
91-
.write_all(b"\x1b[1;34m\xF0\x9F\xA4\x96 Agent: \x1b[0m")
92-
.await?;
9390
output.write_all(content.to_string().as_bytes()).await?;
94-
output.write_all(b"\n").await?;
9591
output.flush().await?;
9692
Ok(())
9793
}

0 commit comments

Comments
 (0)