Way to set the default model for ollama
adapter declaratively
#16
mrjones2014
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
It would be nice to be able to do something like this maybe? return {
-- stuff
opts = {
adapters = {
chat = "ollama",
inline = "ollama",
config = {
default_model = "dolphin-mixtral",
},
}
}
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'd like to stick with
lazy.nvim
'sopts
declarative configuration if possible rather than have to drop to imperativeconfig = function()
configuration.In #13 I added support for just specifying
chat = "ollama"
, however now I'd like to also override the default model to bedolphin-mixtral
.I think it should also be easier in general, it's quite deeply nested for an option many people will probably want to change based on preferences.
Here's how I'm doing it right now:
Beta Was this translation helpful? Give feedback.
All reactions