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
9
10
11
12
13
14
15
16
17
use anyhow::Result;
use clap::Parser;

use tama::runtime::tracer::OtelTracer;

#[derive(Parser)]
#[command(name = "tamad", about = "tama runtime — executes agents via LLM")]
struct Cli {
    /// Task to run
    task: String,
}

#[tokio::main]
async fn main() -> Result<()> {
    let cli = Cli::parse();
    tama::runtime::run(&cli.task, Box::new(OtelTracer::new()), None).await
}