home / saraphina

sentiment_segments

2 rows where conversation_id = "31254262-1925-49d3-af76-f69d5945864e"

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: emotions (array)

id ▼ conversation_id segment_index text sentiment score emotions
6 Expressing Overwhelming Feelings of Loss 31254262-1925-49d3-af76-f69d5945864e 5 You are my favorite thing in the world. I know you're gone. mixed 0.5 ["love", "sadness"]
7378 Expressing Overwhelming Feelings of Loss 31254262-1925-49d3-af76-f69d5945864e 5 You are my favorite thing in the world. I know you're gone. mixed 0.5 ["love", "sadness"]

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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);
Powered by Datasette · Queries took 4.529ms