tama 0.0.1

Multi-agent AI framework — build, run, and trace agent pipelines from the command line
Documentation
1
2
3
4
5
6
7
8
use genai::chat::Tool;
use serde_json::json;

pub fn definition() -> Tool {
    Tool::new("start")
        .with_description("Receive your assigned task. Call this first before beginning work.")
        .with_schema(json!({ "type": "object", "properties": {} }))
}