agent-sdk 0.11.0

Rust Agent SDK for building LLM agents
Documentation
1
2
3
4
5
6
//! `#[derive(ToolName)]` is only valid on enums; a struct must be rejected.

#[derive(agent_sdk::ToolName)]
struct NotAnEnum;

fn main() {}