Reading Sandbox Data

Understand the debug panels in the Agent Sandbox.

The Sandbox left panel gives you a live view of what Rian is doing internally. Here's how to read each tab.

Session tab

After sending a message, two data blocks appear:

Classification

FieldWhat it means
Intent ClassBroad category (e.g. support, billing)
IntentSpecific intent detected (e.g. password_reset)
ScenarioThe matched scenario within the flow
Confidence0.0–1.0; above 0.8 is good (green); below means Rian is uncertain
Intent lockedtrue when confidence exceeds 0.9; Rian commits to this intent

Flow State

FieldWhat it means
Active stateThe flow currently running
Active stepThe step within that flow
AttemptsHow many times Rian tried this step
Outcomeresolved (handled); escalated (handed off); pending (still processing)

Events tab

Four events are logged per simulation, each with a latency reading:

EventDescription
classificationIntent detection; typically the fastest step
retrievalKnowledge base search (cold tier)
llm callThe model call; shows model name and active step
transitionFlow state change; outcome is shown here

High latency on retrieval means the cold knowledge base search is slow — consider adding more targeted articles so the hot/warm tiers are used instead.

Memory tab

Four tiers, each expandable to show key/value data:

TierBadgeWhat it holds
Hotin useActive session context; current conversation state
WorkingactiveShort-term working memory for the current flow
WarmcachedRecently accessed knowledge; fast retrieval
ColdfetchedFull knowledge base search results

Click any tier to expand it and see the actual data Rian is working with. The fetch latency for each tier is shown on the right.

What to look for

  • Confidence below 0.8: knowledge gap; add or improve an article
  • Outcome escalated unexpectedly: check escalation topic config
  • High cold fetch latency: knowledge base may be too large or poorly structured
  • Empty hot/working memory: session may not have started correctly; try Reset Conversation

On this page