• 3 Posts
  • 7 Comments
Joined 8 个月前
cake
Cake day: 2024年9月16日

help-circle
  • I concur 100%. Having retired and finally gotten some time to learn more about AI, I poked around a little and stumbled across Perchance. Never looked elsewhere after that. Other UIs just do not have the creativity tools and the background handling to maintain a coherent chat for very long. Granted, it takes a little learning to use Perchance effectively, but that comes with any tool (no one gets a nice model out of Blender in the first couple hours!). I have found Perchance to be a superior experience and you can’t beat the price!


  • I appreciate the help you’ve been able to provide so far. I don’t mind learning and working out the details; just pointing me in a direction is very helpful.

    I’d really like not to make a new or lesser UI; the summary and memory management of the current UI (in my opinion) generates far more immersive and coherent long-term story/chat than other apps.

    I’m just interested in learning more about LLMs and I’m also interested to see what the chat would be like with super-fast responses.

    Thanks again!





  • That makes sense; I want to learn more about how the weighting is computed (quite interesting stuff) but dot-producting the arrays to get an overall “this is relevant” score is useful knowledge.

    Makes me think that we could weight each individual Lore entry a little more knowing this.

    “Tim is the sheriff. Tim used to be the deputy. Tim is a tall guy” might weight-out better than: “Tim is the sheriff, but he used to be the deputy and he’s tall guy”.

    That could get the “Tim” weighting a bit higher for that Lore if I’m understanding right.

    Thanks!


  • Thanks for the details, that helps a lot.

    I understand about poorly-written Lore entries like “he is a snappy dresser” (“he” is vague). My curiosity was more related to Lore such as: “Tim is the sheriff” “Mike is the bad guy”

    If the UI is currently constructing a message to the AI and we are discussing Tim, whether the UI could randomly select the “Mike is a bad guy” line from the Lore entries and it would be totally unrelated to the current topic of Tim.

    Am I understanding right that Lore isn’t so much “chosen at random”, but is first “scored” as to relevance then chosen?




  • I found the issue, just haven’t been able to fix it yet.

    I am using a fileserver on my localhost and things like the avatar images work fine that way (trying to work with the example of different character expressions for sad, happy, etc., but without uploading a lot of images; the custom code can snag the images via localhost with no issue).

    Apparently there is some CloudFlare API in use that is OK with fetching PNG files from localhost, but NOT text files. If I use rentry (or just upload to perchance and use the URL) then the lorebooks DO work.

    I had made the assumption that because I can get local PNG files, I can also get local TXT files. That’s apparently not the case.

    “You could add a trigger to check the name of the AI that sent the message to run a different custom code within the thread to have multiple characters use different custom codes.”

    Yup, doing that already. Works OK, but I need to get some better JS skills before I go much further. I just wanted to make sure that the custom code was part of the oc.thread, and not specific to each oc.character.

    Thanks!