Skip to main content

abu_agent/toolbox/tools/
terminate.rs

1#[abu_macros::tool(
2    struct_name = Terminator,
3    description = "Answer the user's question, and terminate the conversation.",
4)]
5fn terminate(#[arg(description="Answer to the user's question.")] answer: &str) -> String {
6    answer.to_string()
7}