diff --git a/src/bot.ts b/src/bot.ts index 4ddced6..0097818 100644 --- a/src/bot.ts +++ b/src/bot.ts @@ -39,7 +39,12 @@ if (!allVarsFilled) { // Define the initial system message for the LLM. const session = new GuildData(checkFile("./messages.json", "utf-8")); -console.log("Our conversation is:", session); + +session.data.toString() + ? console.log("Our conversation is:", session.data) + : console.log( + "Looks like we're starting fresh, no previous chat history was found.", + ); const THINKING = "[md]`Thinking...`[/md]";