From b6a2634a0a7e4048103b59f0e75298ace81961f1 Mon Sep 17 00:00:00 2001 From: Danny Avila Date: Thu, 6 Jul 2023 13:47:08 -0400 Subject: [PATCH] refactor(PluginsClient.js): remove unnecessary console.debug statement --- api/app/clients/PluginsClient.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/app/clients/PluginsClient.js b/api/app/clients/PluginsClient.js index a49b9fef97..ff2c95526f 100644 --- a/api/app/clients/PluginsClient.js +++ b/api/app/clients/PluginsClient.js @@ -164,7 +164,7 @@ Only respond with your conversational reply to the following User Message: if (this.options.debug) { console.debug('createLLM: configOptions'); - console.debug(configOptions, credentials); + console.debug(configOptions); } return new ChatOpenAI({ credentials, configuration, ...modelOptions }, configOptions);