fix: switch off debug mode

This commit is contained in:
ikechan8370 2023-02-02 14:39:08 +08:00 committed by GitHub
parent bdafec9a21
commit 8dacaa4a48
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -334,7 +334,7 @@ export class chatgpt extends plugin {
}
this.chatGPTApi = new ChatGPTAPI({
apiKey: Config.apiKey,
debug: true,
debug: false,
upsertMessage,
getMessageById
})