Settings for new gemini
| @@ -61,6 +61,7 @@ | |||
| 61 | <option data-type="google" value="gemini-1.5-flash-8b-exp-0827">gemini-1.5-flash-8b-exp-0827</option> | 61 | <option data-type="google" value="gemini-1.5-flash-8b-exp-0827">gemini-1.5-flash-8b-exp-0827</option> |
| 62 | <option data-type="google" value="gemini-1.5-flash-8b-exp-0924">gemini-1.5-flash-8b-exp-0924</option> | 62 | <option data-type="google" value="gemini-1.5-flash-8b-exp-0924">gemini-1.5-flash-8b-exp-0924</option> |
| 63 | <option data-type="google" value="gemini-exp-1114">gemini-exp-1114</option> | 63 | <option data-type="google" value="gemini-exp-1114">gemini-exp-1114</option> |
| 64 | <option data-type="google" value="gemini-exp-1121">gemini-exp-1121</option> | ||
| 64 | <option data-type="google" value="gemini-1.5-pro">gemini-1.5-pro</option> | 65 | <option data-type="google" value="gemini-1.5-pro">gemini-1.5-pro</option> |
| 65 | <option data-type="google" value="gemini-1.5-pro-latest">gemini-1.5-pro-latest</option> | 66 | <option data-type="google" value="gemini-1.5-pro-latest">gemini-1.5-pro-latest</option> |
| 66 | <option data-type="google" value="gemini-1.5-pro-001">gemini-1.5-pro-001</option> | 67 | <option data-type="google" value="gemini-1.5-pro-001">gemini-1.5-pro-001</option> |
| @@ -4056,7 +4056,7 @@ async function onModelChange() { | |||
| 4056 | if (oai_settings.chat_completion_source == chat_completion_sources.MAKERSUITE) { | 4056 | if (oai_settings.chat_completion_source == chat_completion_sources.MAKERSUITE) { |
| 4057 | if (oai_settings.max_context_unlocked) { | 4057 | if (oai_settings.max_context_unlocked) { |
| 4058 | $('#openai_max_context').attr('max', max_2mil); | 4058 | $('#openai_max_context').attr('max', max_2mil); |
| 4059 | } else if (value.includes('gemini-exp-1114')){ | 4059 | } else if (value.includes('gemini-exp-1114') || value.includes('gemini-exp-1121')) { |
| 4060 | $('#openai_max_context').attr('max', max_32k); | 4060 | $('#openai_max_context').attr('max', max_32k); |
| 4061 | } else if (value.includes('gemini-1.5-pro')) { | 4061 | } else if (value.includes('gemini-1.5-pro')) { |
| 4062 | $('#openai_max_context').attr('max', max_2mil); | 4062 | $('#openai_max_context').attr('max', max_2mil); |
| @@ -4745,6 +4745,7 @@ export function isImageInliningSupported() { | |||
| 4745 | 'gemini-1.5-flash-8b-exp-0827', | 4745 | 'gemini-1.5-flash-8b-exp-0827', |
| 4746 | 'gemini-1.5-flash-8b-exp-0924', | 4746 | 'gemini-1.5-flash-8b-exp-0924', |
| 4747 | 'gemini-exp-1114', | 4747 | 'gemini-exp-1114', |
| 4748 | 'gemini-exp-1121', | ||
| 4748 | 'gemini-1.0-pro-vision-latest', | 4749 | 'gemini-1.0-pro-vision-latest', |
| 4749 | 'gemini-1.5-pro', | 4750 | 'gemini-1.5-pro', |
| 4750 | 'gemini-1.5-pro-latest', | 4751 | 'gemini-1.5-pro-latest', |
| @@ -280,7 +280,7 @@ async function sendMakerSuiteRequest(request, response) { | |||
| 280 | delete generationConfig.stopSequences; | 280 | delete generationConfig.stopSequences; |
| 281 | } | 281 | } |
| 282 | 282 | ||
| 283 | const should_use_system_prompt = (model.includes('gemini-1.5-flash') || model.includes('gemini-1.5-pro') || model.includes('gemini-exp-1114')) && request.body.use_makersuite_sysprompt; | 283 | const should_use_system_prompt = (model.includes('gemini-1.5-flash') || model.includes('gemini-1.5-pro') || model.includes('gemini-exp-1114') || model.includes('gemini-exp-1121')) && request.body.use_makersuite_sysprompt; |
| 284 | const prompt = convertGooglePrompt(request.body.messages, model, should_use_system_prompt, request.body.char_name, request.body.user_name); | 284 | const prompt = convertGooglePrompt(request.body.messages, model, should_use_system_prompt, request.body.char_name, request.body.user_name); |
| 285 | let body = { | 285 | let body = { |
| 286 | contents: prompt.contents, | 286 | contents: prompt.contents, |
| @@ -347,6 +347,7 @@ export function convertGooglePrompt(messages, model, useSysPrompt = false, charN | |||
| 347 | 'gemini-1.5-flash-8b-exp-0827', | 347 | 'gemini-1.5-flash-8b-exp-0827', |
| 348 | 'gemini-1.5-flash-8b-exp-0924', | 348 | 'gemini-1.5-flash-8b-exp-0924', |
| 349 | 'gemini-exp-1114', | 349 | 'gemini-exp-1114', |
| 350 | 'gemini-exp-1121', | ||
| 350 | 'gemini-1.5-pro', | 351 | 'gemini-1.5-pro', |
| 351 | 'gemini-1.5-pro-latest', | 352 | 'gemini-1.5-pro-latest', |
| 352 | 'gemini-1.5-pro-001', | 353 | 'gemini-1.5-pro-001', |