home / saraphina

sentiment_segments

2 rows where conversation_id = "f9b7db2e-b723-4c92-81fd-c36f92e272a6"

✎ View and edit SQL

This data as json, CSV (advanced)

id ▼ conversation_id segment_index text sentiment score emotions
7 Amazon Refund Notification Read Aloud f9b7db2e-b723-4c92-81fd-c36f92e272a6 6 I like to read my notifications. neutral 0.0 []
7379 Amazon Refund Notification Read Aloud f9b7db2e-b723-4c92-81fd-c36f92e272a6 6 I like to read my notifications. neutral 0.0 []

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 21.653ms