Skip to main content

Documentation Index

Fetch the complete documentation index at: https://traceroot.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Tags are string labels on traces for filtering and categorization — by environment, experiment, feature, or any dimension you care about.

Using observe

Pass static tags directly to observe:
from traceroot import observe

@observe(name="run_agent", type="agent", tags=["production", "v2"])
def run_agent(query: str):
    return process(query)

Using using_attributes / usingAttributes

Propagate tags to all traces within a block:
from traceroot import using_attributes

with using_attributes(tags=["staging", "experiment-a"]):
    agent.run(query)