autoagents-derive 0.4.0

Agent Framework for Building Autonomous Agents
Documentation
1
2
3
4
5
6
7
use autoagents_derive::tool;

// `input` is required because generated tools always expose an args schema.
#[tool(name = "missing-input", description = "Tool without an input type")]
struct MissingInputTool;

fn main() {}