app: add extended settings with tabbed UI#14526
Open
4RH1T3CT0R7 wants to merge 5 commits intoollama:mainfrom
Open
app: add extended settings with tabbed UI#145264RH1T3CT0R7 wants to merge 5 commits intoollama:mainfrom
4RH1T3CT0R7 wants to merge 5 commits intoollama:mainfrom
Conversation
Add 22 new configuration fields to the desktop app settings, organized into 4 tabs: General, GPU & Performance, Generation Defaults, and Network & Security. Backend: - Extend Settings struct with GPU, performance, generation, and network fields (store.go) - Add database migration v15->v16 with new columns (database.go) - Wire all new settings to environment variables (server.go) - Add restart triggers for server-affecting settings (ui.go) Frontend: - Refactor monolithic Settings.tsx into tabbed layout using Headless UI TabGroup - Add GeneralTab, GpuPerformanceTab, GenerationDefaultsTab, NetworkSecurityTab components - Add reusable Select (dropdown) and NumberInput UI components - Update generated TypeScript types with new fields - Generation defaults use nullable types (null = system default)
- Remove unused cloudStatus and inferenceComputeResponse props from GeneralTab - Align onChange type signature across all tabs to include null - Show restart-specific amber badge when server restart is needed - Guard os.Environ parsing against entries without '=' separator - Prevent CorsOrigins from overriding Browser's wildcard OLLAMA_ORIGINS
This was referenced Mar 1, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Related PRs
This is Part 1 of 3 in the Ollama Desktop UI improvement series:
Each PR is independent and can be merged separately. Together they transform the desktop app from a chat-only interface into a comprehensive Ollama management tool with full settings control, real-time monitoring, and model lifecycle management.
Changes
store.go,database.goserver.goui.goSettings.tsxGeneralTab.tsx,GpuPerformanceTab.tsx,GenerationDefaultsTab.tsx,NetworkSecurityTab.tsxselect.tsx,number-input.tsxgotypes.gen.tsDesign decisions
*float64/*intin Go,number | nullin TS) — null means "use model/system default", distinguishing from zero valuesTest plan
cd app/ui/app && npm run buildnpx tsc --noEmit