autoagents-derive 0.4.0

Agent Framework for Building Autonomous Agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
error[E0277]: the trait bound `ManualArgs: ToolInputSchema` is not satisfied
  --> tests/ui/compile_fail/missing_tool_input_derive.rs:18:70
   |
18 | #[tool(name = "manual", description = "Manual input schema", input = ManualArgs)]
   |                                                                      ^^^^^^^^^^ unsatisfied trait bound
   |
help: the trait `ToolInputSchema` is not implemented for `ManualArgs`
  --> tests/ui/compile_fail/missing_tool_input_derive.rs:10:1
   |
10 | struct ManualArgs;
   | ^^^^^^^^^^^^^^^^^