From 962c108eecfb9cbb0a21de6623432b6c9bd67c13 Mon Sep 17 00:00:00 2001 From: Raven Scott Date: Sun, 2 Apr 2023 23:57:14 +0200 Subject: [PATCH] Removing not needed debug log --- commands/system/new-chat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/system/new-chat.js b/commands/system/new-chat.js index 8261c7d..8a909bb 100644 --- a/commands/system/new-chat.js +++ b/commands/system/new-chat.js @@ -21,7 +21,7 @@ module.exports = { private: true, run: async (client, interaction) => { const file = './cache/' + interaction.user.id - console.log("DEBUG: " + apiUrl + '?model=' + model + '&temperature=' + temperature + '&top_k=' + topK + '&top_p=' + topP + '&max_length=' + maxLength + '&context_window=' + contextWindow + '&repeat_last_n=' + repeatLastN + '&repeat_penalty=' + repeatPenalty + '&init_prompt=' + initPrompt + '&n_threads=' + nThreads) + var req = unirest('POST', apiUrl + '?model=' + model + '&temperature=' + temperature + '&top_k=' + topK + '&top_p=' + topP + '&max_length=' + maxLength + '&context_window=' + contextWindow + '&repeat_last_n=' + repeatLastN + '&repeat_penalty=' + repeatPenalty + '&init_prompt=' + initPrompt + '&n_threads=' + nThreads) .headers({ 'accept': 'application/json'