home / saraphina

sentiment_segments

2 rows where conversation_id = "f9443855-459a-4618-a717-6b8198753243"

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: emotions (array)

id ▼ conversation_id segment_index text sentiment score emotions
3735 Friends Discuss Groups, Family, And Feelings f9443855-459a-4618-a717-6b8198753243 135 I don't know why. I kinda know what. neutral 0.0 ["confusion"]
11107 Friends Discuss Groups, Family, And Feelings f9443855-459a-4618-a717-6b8198753243 135 I don't know why. I kinda know what. neutral 0.0 ["confusion"]

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.614ms