omi_action_items
4 rows where conversation_id = "524c7723-c4b1-4f57-86ef-010964a3c770"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 338 | Family Chores, Gym Plans, And Tech Help 524c7723-c4b1-4f57-86ef-010964a3c770 | Go run outside |
| 339 | Family Chores, Gym Plans, And Tech Help 524c7723-c4b1-4f57-86ef-010964a3c770 | Take a shower after running outside |
| 340 | Family Chores, Gym Plans, And Tech Help 524c7723-c4b1-4f57-86ef-010964a3c770 | Go to the gym with John |
| 341 | Family Chores, Gym Plans, And Tech Help 524c7723-c4b1-4f57-86ef-010964a3c770 | Restart the frozen computer |
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);