moving
This commit is contained in:
parent
085347ddac
commit
c91e89245c
5 changed files with 399 additions and 9 deletions
22
lua/plugins/minuet.lua
Normal file
22
lua/plugins/minuet.lua
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
return {
|
||||
'milanglacier/minuet-ai.nvim',
|
||||
event = 'InsertEnter',
|
||||
opts = {
|
||||
provider = 'codestral',
|
||||
request_timeout = 3,
|
||||
n_completions = 2,
|
||||
context_window = 12000,
|
||||
provider_options = {
|
||||
codestral = {
|
||||
model = 'codestral-latest',
|
||||
end_point = 'https://api.mistral.ai/v1/fim/completions',
|
||||
api_key = 'MISTRAL_API_KEY',
|
||||
stream = true,
|
||||
optional = {
|
||||
max_tokens = 256,
|
||||
stop = { '\n\n' },
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue