a312e0a8d3
Adds a "Context window" panel to the Models tab: num_ctx and num_predict sliders, bounded by the selected synthesis model's own detected max context (via Ollama's /api/show, GET /api/admin/model-context) when available, falling back to a generous default otherwise. These now drive every synthesis/recap/tag-extraction call instead of the old fixed 8192/700 constants — too low a num_predict is exactly why a long recap or merge sometimes cut off mid-sentence. Recaps also get their own per-tracked-item writing style, independent of the global Merge-tab style: a "More" collapsible section (minimized by default) next to each tracked item's recap cadence, with the same preset + free-text pattern as the Merge tab. The recap system prompt no longer caps output at "3-5 short paragraphs" — it now asks for a full, comprehensive article sized to the material, which only works well together with a properly-sized num_predict.
sv
Everything you need to build a Svelte project, powered by sv.
Creating a project
If you're seeing this, you've probably already done this step. Congrats!
# create a new project
npx sv create my-app
To recreate this project with the same configuration:
# recreate this project
npx sv@0.16.2 create --template minimal --types ts --install npm frontend
Developing
Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
Building
To create a production version of your app:
npm run build
You can preview the production build with npm run preview.
To deploy your app, you may need to install an adapter for your target environment.