new-message-storage #1

Merged
powermaker450 merged 4 commits from new-message-storage into main 2024-07-25 00:37:59 -04:00
Showing only changes of commit 53e358853e - Show all commits

View file

@ -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]";