feat: upgrade mise runtimes and mcphub configuration #254

Merged
joao.dubas merged 6 commits from jpd-feat-general-upgrade into main 2025-07-03 15:04:35 +00:00
Showing only changes of commit 173c959706 - Show all commits

View File

@ -214,7 +214,7 @@ return {
name = 'gemini_pro', name = 'gemini_pro',
schema = { schema = {
model = { model = {
default = 'gemini-2.5-pro-preview-05-06', default = 'gemini-2.5-pro',
}, },
}, },
}) })
@ -224,7 +224,7 @@ return {
name = 'gemini_flash', name = 'gemini_flash',
schema = { schema = {
model = { model = {
default = 'gemini-2.0-flash', default = 'gemini-2.5-flash',
}, },
}, },
}) })
@ -319,9 +319,8 @@ return {
'claude-sonnet-4-20250514', 'claude-sonnet-4-20250514',
}, },
gemini = { gemini = {
'gemini-2.5-pro-preview-05-06', 'gemini-2.5-pro',
'gemini-2.5-flash-preview-05-20', 'gemini-2.5-flash',
'gemini-2.0-flash',
}, },
groq = { groq = {
'deepseek-r1-distill-llama-70b', 'deepseek-r1-distill-llama-70b',
@ -455,13 +454,13 @@ return {
}, },
['gemini-pro'] = { ['gemini-pro'] = {
__inherited_from = 'gemini', __inherited_from = 'gemini',
model = 'gemini-2.5-pro-preview-05-06', model = 'gemini-2.5-pro',
timeout = 600000, timeout = 600000,
extra_request_body = { max_tokens = 40960 }, extra_request_body = { max_tokens = 40960 },
}, },
['gemini-flash'] = { ['gemini-flash'] = {
__inherited_from = 'gemini', __inherited_from = 'gemini',
model = 'gemini-2.0-flash', model = 'gemini-2.5-flash',
timeout = 600000, timeout = 600000,
extra_request_body = { max_tokens = 20480 }, extra_request_body = { max_tokens = 20480 },
}, },