Documentation Index
Fetch the complete documentation index at: https://docs.latitude.so/llms.txt
Use this file to discover all available pages before exploring further.
Developer Quick Start
This guide walks you through connecting an existing AI agent to Latitude. By the end, you’ll have live traces flowing into your project and understand how scores and annotations work.Prerequisites
- A Latitude account (sign up at latitude.so)
- An existing AI-powered application using a supported provider or framework
Step 1: Create a Project
After signing in, create a new project from the dashboard. Projects are the main boundary for all reliability features: issues, evaluations, flaggers, saved searches, and simulations are all scoped to a project. Give your project a descriptive name that matches the agent or feature you’re monitoring.Step 2: Connect Telemetry
Latitude captures your agent’s interactions through OpenTelemetry-compatible telemetry. See the Telemetry section for detailed setup instructions for your specific provider or framework. Once telemetry is connected, every LLM call, tool invocation, and agent step your application makes will appear as spans in Latitude. Related spans are grouped into traces (single interactions) and sessions (multi-turn conversations).Step 3: View Your Traces
Navigate to your project in the Latitude dashboard. You should see traces appearing in real time as your agent handles requests. Each trace shows:- The full conversation between user and agent
- Individual spans (LLM calls, tool calls, etc.)
- Timing, token usage, and cost
- Any scores attached to the trace
Step 4: Explore Scores
Scores are the fundamental measurement unit. Every score is a normalized value between 0 and 1 with a pass/fail verdict and human-readable feedback. Scores come from three sources:- Evaluations: automated scripts that run on your traces
- Annotations: human review verdicts from your team
- Custom: scores you submit from your own code via the API
Step 5: Explore with Search and Annotate
Open the Search page in your project. This is where you build cohorts of traces to investigate or review.- Type a query like “failed payments” or “frustrated user”. Search blends keywords and meaning, so close paraphrases work.
- Add filters from the toolbar to narrow further (status, model, cost, custom metadata, etc.).
- Click into any matching trace to read the conversation.
- Use the annotation panel on the right to leave human feedback. Pick conversation-level, message-level, or text-range scope, give a thumbs-up or thumbs-down verdict, and add a short explanation.
What’s Next
- Observability: Understand spans, traces, and sessions in depth
- Search: Find traces by meaning and bookmark useful cohorts
- Scores: Learn how the scoring system works
- Annotations: Build human review workflows
- Flaggers: Automatic annotators for common failure categories
- Evaluations: Set up automated monitoring
- Issues: Understand how failure patterns are discovered
- Simulations: Test your agent before shipping