diff --git a/src/handlers.ts b/src/handlers.ts index 9e7817e..ee16543 100644 --- a/src/handlers.ts +++ b/src/handlers.ts @@ -124,9 +124,8 @@ export default class CommandHandler { const result = await sendChatGPTMessage(this.chatGPT, await bodyWithoutPrefix, storedConversation) .catch((error) => { - LogService.warn(`OpenAI-API Error: ${error}`); - sendError(this.client, `Sorry, there was an error using the OpenAI-API. Details:\n${error}`, roomId, event.event_id); - return; + LogService.error(`OpenAI-API Error: ${error}`); + sendError(this.client, "The bot has encountered an error, please contact your administrator.", roomId, event.event_id); }); await Promise.all([ this.client.setTyping(roomId, false, 500),