sentiment_segments
1 row where conversation_id = "08a90a27-c4dc-4570-a536-c17a153004f8"
This data as json, CSV (advanced)
Suggested facets: emotions (array)
| id ▼ | conversation_id | segment_index | text | sentiment | score | emotions |
|---|---|---|---|---|---|---|
| 15626 | User Plans Feeding the Cats 08a90a27-c4dc-4570-a536-c17a153004f8 | 0 | Did you what? Did we feed cats yesterday? We didn't. Should we go do that? In a few minutes? | neutral | 0.0 | ["curiosity", "concern"] |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE sentiment_segments (
id INTEGER PRIMARY KEY AUTOINCREMENT,
conversation_id TEXT NOT NULL,
segment_index INTEGER,
text TEXT,
sentiment TEXT,
score REAL,
emotions TEXT,
FOREIGN KEY (conversation_id) REFERENCES omi_conversations(id)
);
CREATE INDEX idx_sentiment_segments_conv ON sentiment_segments(conversation_id);