| 4324 | 4324 | $('#temp_openai').attr('max', oai_max_temp).val(oai_settings.temp_openai).trigger('input'); |
| 4325 | 4325 | } |
| 4326 | 4326 | |
| 4327 | + if (oai_settings.chat_completion_source === chat_completion_sources.NANOGPT) { |
| 4328 | + if (oai_settings.max_context_unlocked) { |
| 4329 | + $('#openai_max_context').attr('max', unlocked_max); |
| 4330 | + } else { |
| 4331 | + $('#openai_max_context').attr('max', max_128k); |
| 4332 | + } |
| 4333 | + } |
| 4334 | + |
| 4327 | 4335 | if (oai_settings.chat_completion_source === chat_completion_sources.COHERE) { |
| 4328 | 4336 | oai_settings.pres_pen_openai = Math.min(Math.max(0, oai_settings.pres_pen_openai), 1); |
| 4329 | 4337 | $('#pres_pen_openai').attr('max', 1).attr('min', 0).val(oai_settings.pres_pen_openai).trigger('input'); |