conversation_insights
0 rows where conversation_id = "15affac1-294a-4eac-afae-2279aeb312f1"
This data as json
0 records
CREATE TABLE conversation_insights (
conversation_id TEXT PRIMARY KEY,
date TEXT NOT NULL,
title TEXT,
relationship_type TEXT,
participants TEXT, -- JSON array
topics TEXT, -- JSON array
arc_start REAL,
arc_mid REAL,
arc_end REAL,
energy_direction TEXT,
jake_role TEXT,
key_moment TEXT,
needs_expressed TEXT, -- JSON array
connection_quality REAL,
emotional_keywords TEXT, -- JSON array
analyzed_at TEXT,
prompt_tokens INTEGER,
completion_tokens INTEGER,
FOREIGN KEY (conversation_id) REFERENCES omi_conversations(id)
);
CREATE INDEX idx_conv_insights_date ON conversation_insights(date);
CREATE INDEX idx_conv_insights_rel ON conversation_insights(relationship_type);