Eventos do Agente
3 rows where conversation_id = 3 sorted by created_at descending
This data as json, CSV (advanced)
Suggested facets: payload, created_at (date)
| event_id | conversation_id | seller_id | agent_type | event_type | payload | created_at ▲ |
|---|---|---|---|---|---|---|
| 8 | 3 3 | Mary 1 | consumer | intent_detected | {"intent": "greeting", "is_buy": false} | 2026-06-23T04:25:58Z |
| 7 | 3 3 | Mary 1 | consumer | intent_detected | {"intent": "other", "is_buy": false} | 2026-06-23T04:17:49Z |
| 6 | 3 3 | Mary 1 | consumer | intent_detected | {"intent": "greeting", "is_buy": false} | 2026-06-23T04:16:40Z |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE agent_event (
event_id INTEGER PRIMARY KEY AUTOINCREMENT,
conversation_id INTEGER NOT NULL REFERENCES conversation(conversation_id),
seller_id INTEGER NOT NULL REFERENCES seller(seller_id),
agent_type TEXT NOT NULL,
event_type TEXT NOT NULL,
payload TEXT NOT NULL DEFAULT '{}',
created_at TEXT NOT NULL DEFAULT (strftime('%Y-%m-%dT%H:%M:%SZ', 'now')),
CHECK (agent_type IN ('consumer', 'seller')),
CHECK (event_type IN ('intent_detected', 'escalation', 'nudge_created', 'proposal_drafted',
'proposal_sent', 'proposal_responded', 'order_created', 'handoff'))
);
CREATE INDEX idx_agent_event_conversation ON agent_event(conversation_id);
CREATE INDEX idx_agent_event_seller ON agent_event(seller_id);