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
    4
    ·
    edit-2
    2 days 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.

    • GrumblePuss@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      ·
      1 day ago

      That is really awesome news!

      Do you have any plans to open up some of the AI settings, such as temperature and token count? It would be really helpful when setting up different kinds of text generation.

      Thank you.

    • ufl@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      ·
      2 days ago

      Yay, finally. Really getting tired of this old model not following even simple output instructions.