From c9d7a54e25860d6f3ab83cf572d3b3125b3e2ed3 Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Wed, 30 Apr 2025 11:47:19 +0200 Subject: [PATCH] Chat: Increase max_tokens to 250 --- commands/misc/chat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/misc/chat.js b/commands/misc/chat.js index 215890f..3ef4c94 100644 --- a/commands/misc/chat.js +++ b/commands/misc/chat.js @@ -53,7 +53,7 @@ module.exports = { "content": prompt } ], - "max_tokens": 100 + "max_tokens": 250 }) }).then(response => response.json()).then(data => { answer = data.choices[0].message.content;