Removing not needed debug log

This commit is contained in:
Raven Scott 2023-04-02 23:57:14 +02:00
parent 02e28978c6
commit 962c108eec
1 changed files with 1 additions and 1 deletions

View File

@ -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'