Skip to content

Commit e87b1fb

Browse files
minor
1 parent e535bd9 commit e87b1fb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,11 @@ fn invoke_tool(toolset: &tools::ToolSet, request: &str) -> Result<String> {
7272

7373
fn run_pipeline(agent: &mut Agent, toolset: &tools::ToolSet) {
7474
loop {
75+
println!("\n============= LLM RESPONSE =============");
7576
if let Ok(response) = agent.post() {
7677
agent.add_message("assistant", &response);
7778
let invoke_result = format!(
78-
"============= TOOL OUTPUT =============\n{}\n",
79+
"\n============= TOOL OUTPUT =============\n{}\n",
7980
invoke_tool(toolset, &response).unwrap_or_else(|e| format!("Error: {}", e))
8081
);
8182
println!("{}", invoke_result);

0 commit comments

Comments
 (0)