Is there a way to get Perchance to stop saying ‘Katrice’ or ‘C Katherine’ whenever I try to use the name ‘Katherine’? I’ve tried changing it every time. Even having the character correct someone in the story, hoping that the AI would learn .But it still changes it to Katrice each time.

  • perchance@lemmy.worldM
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    2 months ago

    The current text generation model is quite bad in a lot of different ways that are unfortunately hard to fix. If you’re talking about perchance.org/ai-character-chat then you could use custom code to do a replacement - you’d paste this in the custom code box in the character editor (click “show more” and scroll down):

    oc.thread.on("MessageAdded", function({message}) {
      message.content = message.content.replaceAll("Katrice", "Katherine");
    });
    

    Alternatively, you could grit your teeth and bear it for another few months until I upgrade the text gen model - the new model will be a lot smarter and have fewer weird idiosyncrasies like this. Currently I’m finalizing the big image generation model upgrade, and working on a multiplayer plugin, and then next on the list is the text gen upgrade. Ideally I’ll finish upgrading the text gen model some time during April.