omi_action_items
4 rows where conversation_id = "d94894b2-8f98-4096-8c80-85fc304a7a05"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 31 | Family Visit, Wrestling, And Open House Dilemma d94894b2-8f98-4096-8c80-85fc304a7a05 | Upgrade the home internet service |
| 32 | Family Visit, Wrestling, And Open House Dilemma d94894b2-8f98-4096-8c80-85fc304a7a05 | Gather account information needed to upgrade the internet |
| 33 | Family Visit, Wrestling, And Open House Dilemma d94894b2-8f98-4096-8c80-85fc304a7a05 | Send back the current printer and cartridges |
| 34 | Family Visit, Wrestling, And Open House Dilemma d94894b2-8f98-4096-8c80-85fc304a7a05 | Order a replacement printer with better reviews |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE omi_action_items (
id INTEGER PRIMARY KEY AUTOINCREMENT,
conversation_id TEXT NOT NULL,
description TEXT,
FOREIGN KEY (conversation_id) REFERENCES omi_conversations(id)
);
CREATE INDEX idx_omi_actions_conv ON omi_action_items(conversation_id);