Open Agent Loops
API Reference

TraceMeta

@open-agent-loops/core


Defined in: observability/tracer.types.ts:28

Run-level configuration captured alongside the timeline — the context you need to reproduce or compare a run. Filled in from whatever taps are wired: sessionId from the agent's agent_start, system/tools from the model request (via observe), and model/params/system from a provider's onRequest tap (e.g. OpenAICompatibleModel).

Properties

PropertyTypeDescriptionDefined in
baseURL?stringEndpoint base URL, e.g. "https://api.featherless.ai/v1" — the request URL host for replay.observability/tracer.types.ts:33
model?stringModel id, e.g. "deepseek-ai/DeepSeek-V3.1".observability/tracer.types.ts:31
params?Record<string, unknown>Sampling parameters (temperature, top_p, max_tokens, ...).observability/tracer.types.ts:35
sessionId?string-observability/tracer.types.ts:29
system?stringThe system prompt for the run.observability/tracer.types.ts:37
tools?ToolSpec[]The tools made available to the model — full specs (name, description, schema).observability/tracer.types.ts:39

On this page