Customer Dashboard

See how your AI experiences are performing in real time.

Loading session summary…
Loading usage over time…
Loading plan details…
Loading metrics…
Insight Copilot is reading your data…
Getting started
3 steps to go live
  1. 1
    Connect your AI
    Drop the Atemes SDK into your chatbot, agent, or API and start sending events.
  2. 2
    Capture feedback
    Ask users for a quick 1–10 rating or free-text comment after each interaction.
  3. 3
    Run your first experiment
    A/B test prompts, models or tools and let Insight Copilot tell you what to keep.
Once events start flowing in, this checklist becomes your launch pad for experiments and tuning.

Workspace settings

Team

Invite teammates

Share a link so others can log in and see this dashboard.

API key

Use this key from your backend or agents to send events to Atemes.

Daily email digest

A lightweight summary of usage, NPS and top comments.

Accent color

SDK quickstart

Drop this into your codebase to start streaming events into Atemes.

# cURL example
curl -X POST "$ATEMES_ENDPOINT/events" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "user_id": "user_123",
    "session_id": "sess_abc",
    "type": "completion",
    "latency_ms": 420,
    "rating": 9,
    "comment": "Felt much smarter than before."
  }'

# Node / TypeScript
import { sendEvent } from "@atemes/insight";

await sendEvent({
  apiKey: "YOUR_API_KEY",
  userId: "user_123",
  sessionId: "sess_abc",
  type: "completion",
  latencyMs: 420,
  rating: 9,
  comment: "Felt much smarter than before.",
});

Recent Feedback

Live stream of what your users are saying.

Loading feedback…