3 questions/issues regarding AI Character Chat…
- Is the lorebook feature currently broken? While I was able to import a lorebook txt file for the main AI character, when I used /lore to view it, the lore information wasn’t displayed - some JS code was shown.
- Are lorebooks for additional characters supported? I have two characters, and each has a separate lorebook txt file. However, the 2nd character is completely unaware of the facts in its own lorebook.
- My observations are that while each character has a custom code block, only the main AI character’s block is used; e.g., oc.thread.on(“MessageAdded”) applies to any message from any character. Character-specific handling needs to be done within this block and code blocks from other characters are ignored. Is this a correct understanding?
Thanks!
I’m assuming that you have it set up on a ‘GET’ API, I think the solution might be to have the local server return the content type specifically e.g.
text/plain
for .txt files, thenimage/png
for image files?I added code to my local server to force “text/plain” for text file content type, but it didn’t do the trick.
From what I can tell, somehow CloudFlare is inserting itself into text file fetches (but not image file fetches) and since there’s no human in that interaction, all that comes back from a localhost LoreBook fetch is an error that the Captcha wasn’t completed.
This isn’t a huge issue, but it’s gonna bug me until I solve it :)