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": {} })) }