massive changes fr

This commit is contained in:
munimunigamer 2026-01-17 04:20:41 -06:00
commit 160d0003bd
25 changed files with 2422 additions and 1326 deletions

View file

@ -0,0 +1,4 @@
-- Add reasoning column to story_entries for persisting chain-of-thought/thinking content
-- This stores the AI's reasoning/thinking process separate from the main content
ALTER TABLE story_entries ADD COLUMN reasoning TEXT;

View file

@ -118,6 +118,12 @@ pub fn run() {
sql: include_str!("../migrations/018_scenario_vault.sql"),
kind: MigrationKind::Up,
},
Migration {
version: 19,
description: "entry_reasoning",
sql: include_str!("../migrations/019_entry_reasoning.sql"),
kind: MigrationKind::Up,
},
];
tauri::Builder::default()