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
- 1Connect your AIDrop the Atemes SDK into your chatbot, agent, or API and start sending events.
- 2Capture feedbackAsk users for a quick 1–10 rating or free-text comment after each interaction.
- 3Run your first experimentA/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
TeamInvite 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…