forked from gsuuon/model.nvim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchats.lua
270 lines (253 loc) · 6.48 KB
/
chats.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
local openai = require('model.providers.openai')
local palm = require('model.providers.palm')
local llamacpp = require('model.providers.llamacpp')
local ollama = require('model.providers.ollama')
local together = require('model.providers.together')
local gemini = require('model.providers.gemini')
local anthropic = require('model.providers.anthropic')
local huggingface = require('model.providers.huggingface')
local zephyr_fmt = require('model.format.zephyr')
local starling_fmt = require('model.format.starling')
local util = require('model.util')
local function input_if_selection(input, context)
return context.selection and input or ''
end
local openai_chat = {
provider = openai,
system = 'You are a helpful assistant',
params = {
model = 'gpt-3.5-turbo',
},
create = input_if_selection,
run = function(messages, config)
if config.system then
table.insert(messages, 1, {
role = 'system',
content = config.system,
})
end
return { messages = messages }
end,
}
---@type table<string, ChatPrompt>
local chats = {
openai = openai_chat,
gpt4o = vim.tbl_deep_extend('force', openai_chat, {
params = {
model = 'gpt-4o',
},
}),
gpt4 = vim.tbl_deep_extend('force', openai_chat, {
params = {
model = 'gpt-4',
},
}),
palm = {
provider = palm,
system = 'You are a helpful assistant',
create = input_if_selection,
options = {
method = 'generateMessage',
model = 'chat-bison-001',
},
run = function(messages, config)
return {
prompt = {
context = config.system,
messages = vim.tbl_map(function(msg)
return {
content = msg.content,
author = msg.role,
}
end, messages),
},
}
end,
},
['llamacpp:zephyr'] = {
provider = llamacpp,
options = {
model = 'zephyr-7b-beta.Q5_K_M.gguf',
args = {
'-c',
8192,
'-ngl',
30,
},
},
system = 'You are a helpful assistant',
create = input_if_selection,
run = zephyr_fmt.chat,
},
['ollama:starling'] = {
provider = ollama,
params = {
model = 'starling-lm',
},
create = input_if_selection,
run = starling_fmt.chat,
},
['together:codellama'] = {
provider = together,
params = {
model = 'Phind/Phind-CodeLlama-34B-v2',
max_tokens = 1000,
stop = '</s>',
},
system = 'You are an intelligent programming assistant',
create = function(input, ctx)
return ctx.selection and input or ''
end,
run = function(messages, config)
local prompt = '### System Prompt\n' .. config.system
for _, msg in ipairs(messages) do
prompt = prompt
.. '\n\n### '
.. (msg.role == 'user' and 'User Message' or 'Assistant')
.. '\n'
.. msg.content
end
prompt = prompt .. '### Assistant\n'
return {
prompt = prompt,
}
end,
},
['together:mixtral'] = {
provider = together,
params = {
model = 'DiscoResearch/DiscoLM-mixtral-8x7b-v2',
temperature = 0.7,
top_p = 0.7,
top_k = 50,
repetition_penalty = 1,
stop = {
'<|im_end|>',
'<|im_start|>',
},
},
create = input_if_selection,
run = function(messages, config)
local first = messages[1]
if config.system then
first.content = config.system .. '\n' .. first.content
end
return {
prompt = table.concat(vim.tbl_map(function(msg)
return '<|im_start|>'
.. msg.role
.. '\n'
.. msg.content
.. '<|im_end|>\n'
end, messages)) .. '<|im_start|>assistant',
}
end,
},
['gpt4:commit review'] = {
provider = openai,
system = "You are an expert programmer that gives constructive feedback. Review the changes in the user's git diff.",
params = {
model = 'gpt-4o',
},
create = function()
local git_diff = vim.fn.system({ 'git', 'diff', '--staged' })
---@cast git_diff string
if not git_diff:match('^diff') then
error('Git error:\n' .. git_diff)
end
return git_diff
end,
run = openai_chat.run,
},
gemini = {
provider = gemini,
create = input_if_selection,
run = function(messages, config)
local formattedParts = {}
if config.system then
table.insert(
formattedParts,
{ role = 'user', parts = { { text = config.system } } }
)
table.insert(
formattedParts,
{ role = 'model', parts = { { text = 'Understood.' } } }
)
end
for _, msg in ipairs(messages) do
if msg.role == 'user' then
table.insert(
formattedParts,
{ role = 'user', parts = { { text = msg.content } } }
)
elseif msg.role == 'assistant' then
table.insert(
formattedParts,
{ role = 'model', parts = { { text = msg.content } } }
)
end
end
return {
contents = formattedParts,
}
end,
},
claude = {
provider = anthropic,
create = input_if_selection,
params = {
model = 'claude-3-5-sonnet-20240620',
},
run = function(messages, config)
return vim.tbl_deep_extend('force', config.params, {
messages = messages,
system = config.system,
})
end,
},
groq = vim.tbl_deep_extend('force', openai_chat, {
params = {
model = 'llama3-70b-8192',
},
runOptions = function()
return {
url = 'https://api.groq.com/openai/v1/',
authorization = 'Bearer ' .. util.env('GROQ_API_KEY'),
}
end,
}),
mistral = vim.tbl_deep_extend('force', openai_chat, {
params = {
model = 'mistral-medium-latest',
},
runOptions = function()
return {
url = 'https://api.mistral.ai/v1/',
authorization = 'Bearer ' .. util.env('MISTRAL_API_KEY'),
}
end,
}),
deepseek = {
provider = huggingface,
options = {
model = 'deepseek-ai/DeepSeek-Coder-V2-Instruct'
},
builder = function(input)
return { inputs = input }
end
},
deepseek2 = {
provider = huggingface,
create = input_if_selection,
params = {
model = 'deepseek-ai/DeepSeek-Coder-V2-Instruct',
},
run = function(messages, config)
return vim.tbl_deep_extend('force', config.params, {
messages = messages,
system = config.system,
})
end,
},
}
return chats