From c493da2f2ae3a2fa7e432eb6a633a0064f0ff5c5 Mon Sep 17 00:00:00 2001 From: Dave Date: Thu, 25 Dec 2025 13:22:08 +0000 Subject: [PATCH] chore: archive story 10 --- .../stories/archive/10_persist_model_selection.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .living_spec/stories/archive/10_persist_model_selection.md diff --git a/.living_spec/stories/archive/10_persist_model_selection.md b/.living_spec/stories/archive/10_persist_model_selection.md new file mode 100644 index 0000000..a75fba1 --- /dev/null +++ b/.living_spec/stories/archive/10_persist_model_selection.md @@ -0,0 +1,15 @@ +# Story: Persist Model Selection + +## User Story +**As a** User +**I want** the application to remember which LLM model I selected +**So that** I don't have to switch from "llama3" to "deepseek" every time I launch the app. + +## Acceptance Criteria +* [ ] Backend/Frontend: Use `tauri-plugin-store` to save the `selected_model` string. +* [ ] Frontend: On mount (after fetching available models), check the store. +* [ ] Frontend: If the stored model exists in the available list, select it. +* [ ] Frontend: When the user changes the dropdown, update the store. + +## Out of Scope +* Persisting per-project model settings (global setting is fine for now).