Merged
Conversation
a29244a to
1a0b77e
Compare
Contributor
Author
|
@CodedNil Could you check if this still works with your gemini, openai and openrouter? I don't have premium for any of those so I can't test. |
Contributor
|
Still works for me with OpenRouter, don't have the other two keys atm but just looking at the code there's no reason they shouldn't work too. |
Owner
|
Gemini also still works fine |
zortax
pushed a commit
that referenced
this pull request
Jan 19, 2026
* Ollama support * Disable ai mode if not configured
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.
Allow the usage of ollama models in the ai mode.
Also made it so the Ask AI button only shows if ai is actually configured.
The llm crate doesnt seem to support streaming even though the ollama api does so it uses normal .chat()
Not a big problem I think, just gotta wait for the full message to generate before you can see it.
I kept the old function commented out so if the llm crate updates and does support it you can probably just replace the new function with the old one.