Quick Start Guide

Get up and running with AgentNeo in minutes!

Basic Setup

from agentneo import AgentNeo, Tracer, Evaluation, launch_dashboard

# Create session and project
neo_session = AgentNeo(session_name="my_session")
neo_session.create_project(project_name="my_project")

# Initialize tracer
tracer = Tracer(session=neo_session)
tracer.start()

Adding Traces

Trace LLM Calls

@tracer.trace_llm("my_llm_call")
async def get_llm_response(prompt):
    # Your LLM call here
    pass

Trace Tools

Trace Agents

Viewing Results

Visit http://localhost:3000 to view your traces and metrics.

Complete Example

Last updated