mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Remove legacy NovelAI models
This commit is contained in:
@@ -3369,13 +3369,10 @@ function getMaxContextSize() {
|
||||
}
|
||||
if (main_api == 'novel') {
|
||||
this_max_context = Number(max_context);
|
||||
if (nai_settings.model_novel == 'krake-v2' || nai_settings.model_novel == 'euterpe-v2') {
|
||||
this_max_context = Math.min(max_context, 2048);
|
||||
}
|
||||
if (nai_settings.model_novel == 'clio-v1') {
|
||||
if (nai_settings.model_novel.includes('clio')) {
|
||||
this_max_context = Math.min(max_context, 8192);
|
||||
}
|
||||
if (nai_settings.model_novel == 'kayra-v1') {
|
||||
if (nai_settings.model_novel.includes('kayra')) {
|
||||
this_max_context = Math.min(max_context, 8192);
|
||||
|
||||
const subscriptionLimit = getKayraMaxContextTokens();
|
||||
|
Reference in New Issue
Block a user