diff --git a/public/scripts/poe.js b/public/scripts/poe.js index f6097d4c7..ce2696dc3 100644 --- a/public/scripts/poe.js +++ b/public/scripts/poe.js @@ -279,7 +279,8 @@ async function generatePoe(type, finalPrompt, signal) { const suggestReplies = !isQuiet && !isImpersonate && !isContinue; let reply = ''; - if (max_context > POE_TOKEN_LENGTH && poe_settings.bot !== 'a2_100k') { + const unchunkedBots = ['vizcacha', 'agouti', 'a2_100k', 'a2_2']; + if (max_context > POE_TOKEN_LENGTH && !unchunkedBots.includes(poe_settings.bot)) { console.debug('Prompt is too long, sending in chunks'); const result = await sendChunkedMessage(finalPrompt, !isQuiet, suggestReplies, signal) reply = result.reply;