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
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
use uuid::Uuid;

// ── Context ───────────────────────────────────────────────────────────────────

#[derive(Clone)]
pub struct TraceCtx {
    pub trace_id: String,
    pub span_id: String,
    pub parent_span_id: Option<String>,
}

impl TraceCtx {
    pub fn new_root(trace_id: String) -> Self {
        TraceCtx {
            trace_id,
            span_id: new_span_id(),
            parent_span_id: None,
        }
    }

    pub fn child(&self) -> Self {
        TraceCtx {
            trace_id: self.trace_id.clone(),
            span_id: new_span_id(),
            parent_span_id: Some(self.span_id.clone()),
        }
    }
}

fn new_span_id() -> String {
    Uuid::new_v4().to_string()
}

pub fn new_node_id() -> String {
    Uuid::new_v4().to_string()
}

// ── Trait ─────────────────────────────────────────────────────────────────────

pub trait Tracer: Send {
    fn on_run_start(&mut self, ctx: &TraceCtx, entrypoint: &str, task: &str);
    fn on_run_end(&mut self, ctx: &TraceCtx, status: &str, output: &str, duration_ms: u128);
    /// `prev_span_id`: the span that completed immediately before this agent started,
    /// within the same parent. When `prev_span_id == parent_span_id` and multiple
    /// siblings share this, they are running in parallel.
    fn on_agent_start(
        &mut self,
        ctx: &TraceCtx,
        agent: &str,
        pattern: &str,
        input: &str,
        prev_span_id: Option<&str>,
        node_id: &str,
    );
    fn on_agent_end(&mut self, ctx: &TraceCtx, key: &str, output: &str, duration_ms: u128);
    fn on_llm_call(
        &mut self,
        ctx: &TraceCtx,
        step: &str,
        model: &str,
        temperature: Option<f32>,
        system: &str,
        response: &str,
        input_tokens: u32,
        output_tokens: u32,
        duration_ms: u128,
    );
    fn on_tool_call(
        &mut self,
        ctx: &TraceCtx,
        tool: &str,
        args_json: &str,
        result: &str,
        duration_ms: u128,
    );
    /// Synthetic start: oneshot step — runtime passed input directly without a start() tool call.
    /// Stored with kind='synthetic' so the UI shows the input alongside the LLM call.
    fn on_synthetic_start(&mut self, ctx: &TraceCtx, input: &str);
    /// Synthetic finish: model returned plain text instead of calling finish(), or oneshot completed.
    /// Stored with kind='synthetic' so the UI can distinguish it from a real tool call.
    fn on_synthetic_finish(&mut self, ctx: &TraceCtx, args_json: &str, result: &str);
}

// ── NoopTracer ────────────────────────────────────────────────────────────────

pub struct NoopTracer;
impl Tracer for NoopTracer {
    fn on_run_start(&mut self, _: &TraceCtx, _: &str, _: &str) {}
    fn on_run_end(&mut self, _: &TraceCtx, _: &str, _: &str, _: u128) {}
    fn on_agent_start(
        &mut self,
        _: &TraceCtx,
        _: &str,
        _: &str,
        _: &str,
        _: Option<&str>,
        _: &str,
    ) {
    }
    fn on_agent_end(&mut self, _: &TraceCtx, _: &str, _: &str, _: u128) {}
    fn on_llm_call(
        &mut self,
        _: &TraceCtx,
        _: &str,
        _: &str,
        _: Option<f32>,
        _: &str,
        _: &str,
        _: u32,
        _: u32,
        _: u128,
    ) {
    }
    fn on_tool_call(&mut self, _: &TraceCtx, _: &str, _: &str, _: &str, _: u128) {}
    fn on_synthetic_start(&mut self, _: &TraceCtx, _: &str) {}
    fn on_synthetic_finish(&mut self, _: &TraceCtx, _: &str, _: &str) {}
}

// ── OtelTracer ────────────────────────────────────────────────────────────────

pub struct OtelTracer {
    enabled: bool,
}

impl OtelTracer {
    pub fn new() -> Self {
        let enabled = std::env::var("OTEL_EXPORTER_OTLP_ENDPOINT").is_ok()
            && std::env::var("OTEL_SDK_DISABLED")
                .map(|v| v != "true")
                .unwrap_or(true);
        if enabled {
            eprintln!("otel: tracing enabled — full wiring coming in Phase 3");
        }
        OtelTracer { enabled }
    }
}

impl Tracer for OtelTracer {
    fn on_run_start(&mut self, _: &TraceCtx, _: &str, _: &str) {}
    fn on_run_end(&mut self, _: &TraceCtx, _: &str, _: &str, _: u128) {}
    fn on_agent_start(
        &mut self,
        _: &TraceCtx,
        _: &str,
        _: &str,
        _: &str,
        _: Option<&str>,
        _: &str,
    ) {
    }
    fn on_agent_end(&mut self, _: &TraceCtx, _: &str, _: &str, _: u128) {}
    fn on_llm_call(
        &mut self,
        _: &TraceCtx,
        _: &str,
        _: &str,
        _: Option<f32>,
        _: &str,
        _: &str,
        _: u32,
        _: u32,
        _: u128,
    ) {
    }
    fn on_tool_call(&mut self, _: &TraceCtx, _: &str, _: &str, _: &str, _: u128) {}
    fn on_synthetic_start(&mut self, _: &TraceCtx, _: &str) {}
    fn on_synthetic_finish(&mut self, _: &TraceCtx, _: &str, _: &str) {}
}

// ── CompositeTracer ───────────────────────────────────────────────────────────

pub struct CompositeTracer {
    tracers: Vec<Box<dyn Tracer>>,
}

impl CompositeTracer {
    pub fn new(tracers: Vec<Box<dyn Tracer>>) -> Self {
        CompositeTracer { tracers }
    }
}

impl Tracer for CompositeTracer {
    fn on_run_start(&mut self, ctx: &TraceCtx, e: &str, t: &str) {
        for t_ in &mut self.tracers {
            t_.on_run_start(ctx, e, t);
        }
    }
    fn on_run_end(&mut self, ctx: &TraceCtx, s: &str, o: &str, d: u128) {
        for t in &mut self.tracers {
            t.on_run_end(ctx, s, o, d);
        }
    }
    fn on_agent_start(
        &mut self,
        ctx: &TraceCtx,
        agent: &str,
        pattern: &str,
        input: &str,
        prev: Option<&str>,
        node_id: &str,
    ) {
        for t in &mut self.tracers {
            t.on_agent_start(ctx, agent, pattern, input, prev, node_id);
        }
    }
    fn on_agent_end(&mut self, ctx: &TraceCtx, key: &str, output: &str, duration_ms: u128) {
        for t in &mut self.tracers {
            t.on_agent_end(ctx, key, output, duration_ms);
        }
    }
    fn on_llm_call(
        &mut self,
        ctx: &TraceCtx,
        step: &str,
        model: &str,
        temperature: Option<f32>,
        system: &str,
        response: &str,
        in_tok: u32,
        out_tok: u32,
        dur: u128,
    ) {
        for t in &mut self.tracers {
            t.on_llm_call(ctx, step, model, temperature, system, response, in_tok, out_tok, dur);
        }
    }
    fn on_tool_call(&mut self, ctx: &TraceCtx, tool: &str, args: &str, result: &str, dur: u128) {
        for t in &mut self.tracers {
            t.on_tool_call(ctx, tool, args, result, dur);
        }
    }
    fn on_synthetic_start(&mut self, ctx: &TraceCtx, input: &str) {
        for t in &mut self.tracers {
            t.on_synthetic_start(ctx, input);
        }
    }
    fn on_synthetic_finish(&mut self, ctx: &TraceCtx, args_json: &str, result: &str) {
        for t in &mut self.tracers {
            t.on_synthetic_finish(ctx, args_json, result);
        }
    }
}

// ── BufferedTracer ────────────────────────────────────────────────────────────

pub struct BufferedTracer {
    events: Vec<BufferedEvent>,
}

enum BufferedEvent {
    AgentStart {
        ctx: TraceCtx,
        agent: String,
        pattern: String,
        input: String,
        prev_span_id: Option<String>,
        node_id: String,
    },
    AgentEnd {
        ctx: TraceCtx,
        key: String,
        output: String,
        duration_ms: u128,
    },
    LlmCall {
        ctx: TraceCtx,
        step: String,
        model: String,
        temperature: Option<f32>,
        system: String,
        response: String,
        input_tokens: u32,
        output_tokens: u32,
        duration_ms: u128,
    },
    ToolCall {
        ctx: TraceCtx,
        tool: String,
        args_json: String,
        result: String,
        duration_ms: u128,
    },
    SyntheticStart {
        ctx: TraceCtx,
        input: String,
    },
    SyntheticFinish {
        ctx: TraceCtx,
        args_json: String,
        result: String,
    },
}

impl BufferedTracer {
    pub fn new() -> Self {
        BufferedTracer { events: Vec::new() }
    }

    pub fn flush_into(self, tracer: &mut dyn Tracer) {
        for event in self.events {
            match event {
                BufferedEvent::AgentStart {
                    ctx,
                    agent,
                    pattern,
                    input,
                    prev_span_id,
                    node_id,
                } => tracer.on_agent_start(
                    &ctx,
                    &agent,
                    &pattern,
                    &input,
                    prev_span_id.as_deref(),
                    &node_id,
                ),
                BufferedEvent::AgentEnd {
                    ctx,
                    key,
                    output,
                    duration_ms,
                } => tracer.on_agent_end(&ctx, &key, &output, duration_ms),
                BufferedEvent::LlmCall {
                    ctx,
                    step,
                    model,
                    temperature,
                    system,
                    response,
                    input_tokens,
                    output_tokens,
                    duration_ms,
                } => tracer.on_llm_call(
                    &ctx,
                    &step,
                    &model,
                    temperature,
                    &system,
                    &response,
                    input_tokens,
                    output_tokens,
                    duration_ms,
                ),
                BufferedEvent::ToolCall {
                    ctx,
                    tool,
                    args_json,
                    result,
                    duration_ms,
                } => tracer.on_tool_call(&ctx, &tool, &args_json, &result, duration_ms),
                BufferedEvent::SyntheticStart { ctx, input } => {
                    tracer.on_synthetic_start(&ctx, &input)
                }
                BufferedEvent::SyntheticFinish { ctx, args_json, result } => {
                    tracer.on_synthetic_finish(&ctx, &args_json, &result)
                }
            }
        }
    }
}

impl Tracer for BufferedTracer {
    fn on_run_start(&mut self, _: &TraceCtx, _: &str, _: &str) {}
    fn on_run_end(&mut self, _: &TraceCtx, _: &str, _: &str, _: u128) {}
    fn on_agent_start(
        &mut self,
        ctx: &TraceCtx,
        agent: &str,
        pattern: &str,
        input: &str,
        prev_span_id: Option<&str>,
        node_id: &str,
    ) {
        self.events.push(BufferedEvent::AgentStart {
            ctx: ctx.clone(),
            agent: agent.to_string(),
            pattern: pattern.to_string(),
            input: input.to_string(),
            node_id: node_id.to_string(),
            prev_span_id: prev_span_id.map(|s| s.to_string()),
        });
    }
    fn on_agent_end(&mut self, ctx: &TraceCtx, key: &str, output: &str, duration_ms: u128) {
        self.events.push(BufferedEvent::AgentEnd {
            ctx: ctx.clone(),
            key: key.to_string(),
            output: output.to_string(),
            duration_ms,
        });
    }
    fn on_llm_call(
        &mut self,
        ctx: &TraceCtx,
        step: &str,
        model: &str,
        temperature: Option<f32>,
        system: &str,
        response: &str,
        input_tokens: u32,
        output_tokens: u32,
        duration_ms: u128,
    ) {
        self.events.push(BufferedEvent::LlmCall {
            ctx: ctx.clone(),
            step: step.to_string(),
            model: model.to_string(),
            temperature,
            system: system.to_string(),
            response: response.to_string(),
            input_tokens,
            output_tokens,
            duration_ms,
        });
    }
    fn on_tool_call(
        &mut self,
        ctx: &TraceCtx,
        tool: &str,
        args_json: &str,
        result: &str,
        duration_ms: u128,
    ) {
        self.events.push(BufferedEvent::ToolCall {
            ctx: ctx.clone(),
            tool: tool.to_string(),
            args_json: args_json.to_string(),
            result: result.to_string(),
            duration_ms,
        });
    }
    fn on_synthetic_start(&mut self, ctx: &TraceCtx, input: &str) {
        self.events.push(BufferedEvent::SyntheticStart {
            ctx: ctx.clone(),
            input: input.to_string(),
        });
    }
    fn on_synthetic_finish(&mut self, ctx: &TraceCtx, args_json: &str, result: &str) {
        self.events.push(BufferedEvent::SyntheticFinish {
            ctx: ctx.clone(),
            args_json: args_json.to_string(),
            result: result.to_string(),
        });
    }
}