refactor(PluginsClient.js): remove unnecessary console.debug statement

This commit is contained in:
Danny Avila 2023-07-06 13:47:08 -04:00 committed by Danny Avila
parent 5ad0ef331f
commit b6a2634a0a

View file

@ -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);