-
Notifications
You must be signed in to change notification settings - Fork 3.2k
feat(core): add Ollama as third AI provider [pre-#1137 refactor baseline] #1158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
0639083
feat(core): add Ollama as a third AI assistant provider
asmrtfm 5b4e1cc
test(core): fix conversations test isolation and batch split for conf…
asmrtfm 59c3758
docs: add JSDoc coverage for Ollama-introduced symbols
asmrtfm d7e50c1
fix(web): fall back to Claude in settings if Ollama is unreachable
asmrtfm ab0cb3d
docs: add Ollama to assistant setup, configuration, and API reference
asmrtfm e7173dc
docs(ollama): remove inaccurate capability claims from file comment
asmrtfm cbf1ac6
docs(ollama): reframe comments toward agentic extension, not limitation
asmrtfm d01084f
fix(core): thread ollama baseUrl from config through to client
asmrtfm f293321
fix(core): validate DEFAULT_AI_ASSISTANT env var before persisting
asmrtfm b458703
fix(server): use persisted ollama baseUrl in /api/ollama/models handler
asmrtfm 4bb937e
fix(server): add structured logging to ollama model discovery
asmrtfm d1d8875
fix(web,core): allow clearing saved ollama model and baseUrl from Set…
asmrtfm 2ae3a27
fix(workflows): reject 'inherit' sentinel for ollama provider
asmrtfm fe1439f
feat(core): merge feat/ollama-support into feat/model-indicator
asmrtfm 2e5aaa9
feat(web): add always-visible model indicator to TopNav
asmrtfm 4a62b68
test(core): restore conversations.test.ts batch isolation for config-…
asmrtfm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
availableAssistantsnow exposes Ollama on every install.SettingsPage.tsxrenders its provider dropdown from this array, so hard-coding['claude', 'ollama']makes Ollama visible even when there is noassistants.ollamablock configured. That breaks the additive/"only when configured" behavior described for this PR.🤖 Prompt for AI Agents