feat: add utterance field to dataset entries and update related components for filtering and display

This commit is contained in:
averel10
2026-03-13 10:32:46 +01:00
parent 6432375a4f
commit 1aeb9a7c7d
11 changed files with 1150 additions and 2 deletions

View File

@@ -7,6 +7,8 @@ export const dataset_entry = sqliteTable('dataset_entry', {
externalId: text('external_id').notNull(),
speakerId: text('speaker_id').notNull(),
modelName: text('model_name').notNull(),
utteranceId: text('utterance_id'),
utteranceText: text('utterance_text'),
datasetId: integer('dataset_id')
.notNull()
.references(() => dataset.id),