We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59df5db commit eef1314Copy full SHA for eef1314
1 file changed
src/agent/tool_execution.rs
@@ -96,8 +96,9 @@ pub(crate) async fn execute_one_tool(
96
});
97
if r.success {
98
let output = scrub_credentials(&r.output);
99
- let receipt = receipt_generator
100
- .map(|receipt_gen| receipt_gen.generate_now(call_name, &call_arguments, &output));
+ let receipt = receipt_generator.map(|receipt_gen| {
+ receipt_gen.generate_now(call_name, &call_arguments, &output)
101
+ });
102
Ok(ToolExecutionOutcome {
103
output,
104
success: true,
0 commit comments