mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-02-20 14:10:39 +01:00
fixed model in max context
This commit is contained in:
parent
88ada0f67d
commit
41247740b1
@ -4335,13 +4335,13 @@ async function onModelChange() {
|
||||
if (oai_settings.max_context_unlocked) {
|
||||
$('#openai_max_context').attr('max', unlocked_max);
|
||||
}
|
||||
else if (oai_settings.groq_model.includes('llama3.1')) {
|
||||
else if (oai_settings.blockentropy_model.includes('llama3.1')) {
|
||||
$('#openai_max_context').attr('max', max_16k);
|
||||
}
|
||||
else if (oai_settings.groq_model.includes('72b')) {
|
||||
else if (oai_settings.blockentropy_model.includes('72b')) {
|
||||
$('#openai_max_context').attr('max', max_16k);
|
||||
}
|
||||
else if (oai_settings.groq_model.includes('120b')) {
|
||||
else if (oai_settings.blockentropy_model.includes('120b')) {
|
||||
$('#openai_max_context').attr('max', max_12k);
|
||||
}
|
||||
else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user