Add Turbo 16k to Window AI

This commit is contained in:
Cohee
2023-06-13 23:10:59 +03:00
parent 356e85fedd
commit 183bf442d4
2 changed files with 4 additions and 0 deletions

View File

@@ -1510,6 +1510,9 @@ function onModelChange() {
else if (value.includes('claude')) {
$('#openai_max_context').attr('max', claude_max);
}
else if (value.includes('gpt-3.5-turbo-16k')) {
$('#openai_max_context').attr('max', gpt3_16k_max);
}
else if (value.includes('gpt-3.5')) {
$('#openai_max_context').attr('max', gpt3_max);
}