mirror of
https://github.com/AventurasTeam/Aventuras.git
synced 2026-04-28 03:40:11 +00:00
massive changes fr
This commit is contained in:
commit
160d0003bd
25 changed files with 2422 additions and 1326 deletions
4
src-tauri/migrations/019_entry_reasoning.sql
Normal file
4
src-tauri/migrations/019_entry_reasoning.sql
Normal 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;
|
||||
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue