For the complete documentation index, see llms.txt. This page is also available as Markdown.
Components
Tracer
The core component for instrumenting and monitoring code.
Features
Function decoration
Event tracking
Metric collection
Data buffering
Usage
from agentneo import Tracertracer =Tracer(session=neo_session)tracer.start()@tracer.trace_llm("my_llm")defllm_function():pass@tracer.trace_tool("my_tool")deftool_function():passtracer.stop()
Dashboard
Interactive web interface for visualization and analysis.