nix/module/common/nvim/plugin/Ollama.lua
2024-03-04 03:04:57 +03:00

14 lines
365 B
Lua

require("ollama").setup {
model = "mistral",
url = "http://127.0.0.1:11434",
-- View the actual default prompts in ./lua/ollama/prompts.lua
prompts = {
-- Sample_Prompt = {
-- prompt = "This is a sample prompt that receives $input and $sel(ection), among others.",
-- input_label = "> ",
-- model = "mistral",
-- action = "display",
-- }
}
}