Doing Perchance.org things…

Links

  • 11 Posts
  • 90 Comments
Joined 1 year ago
cake
Cake day: June 21st, 2023

help-circle

  • I’d recommend waiting for a couple of seconds before reloading/closing the page to make sure the image is ‘converted/saved’ on the chat. I tried clicking the keep then immediately reloading the page (even closing the page as soon as I clicked ‘keep’), but it managed to keep the image. Not sure what other factors might affect it saving.

    If you could provide a video demo of the problem with the console open, it would be helpful to see if there are problems with the code.




  • After the declaration of ‘odds’ any other text after it is invalid e.g.

    Ss^0.5 or s
    Tt^0.5 || t
    

    If you want a randomized value for that in which Tt has odds of 0.5 to being chosen you could have:

    {Ss^0.5|s}
    
    {Tt^0.5|t}
    

    If you want to add ‘odds’ with HTML formatting, you should place the odds after the items e.g.

    <u>Ag^0.5</u>
    
    to
    
    <u>Ag</u> ^0.5
    

    The change in odds should always be on the end of the item.

    On your [m = markings6.selectUnique(1,7).joinItems("/")] you are setting the value of m to be the joined items in a string, not the list. To fix it you just need to store it on the variable, then use the joinItems on the variable after: [m = markings6.selectUnique(1,7), m.joinItems("/")]

    Then to output the names: [m.selectAll.map(a => a.name).joinItems("/")] in which it would iterate on the markings on m and get their name, then joinItems them.








  • I haven’t really had a long conversation and multiple topics in one bot, so I don’t have much experience in manipulating the bot’s behavior.

    I would suggest adding a reminder on the character’s Reminder Message to steer the AI’s response. Another would be using the /ai <reply instruction> method in which you instruct what the AI would reply. You could also probably try to edit the Memories and summaries that the AI generated that it uses in generating the reply and you could check the memory that pushes the AI to reply that way by clicking the brain icon that show up upon hover in the message on the bottom right.

    There are a lot more people knowledgeable in telling the AI what to do in the #ai-character-chat channel in Perchance Discord.


  • Nebula and Forest

    Image Details
    generator: text2image-generator
    style: No Style
    prompt: nebula in clear night sky framed by forest leaves in a clearing, detailed, soft lighting, rtx, uhd, anime style, featured in pixiv, WLOP, ross tran, artgerm
    negativePrompt: \[3d render, vibrant, child, low contrast, cel shade BREAK hard shadow, unclear features, incorrect anatomy, deformed body, bad drawing, poor illustration, worse quality, cellphone:0.1\] 
    resolution: 768x512
    guidanceScale: 7
    seed: 187151457
    








  • Can you send me the character link again. I would assume that you do not have [input.description] on the prompt or [input.negative] on negative on the pasted style like so:

      ...
      "Professional Photo": {
        // When adding a new prompt, you need to add [input.description] to help the code know what would be the prefix and suffix of the prompt. [input.negative] is not as required.
        prompt:
          "[input.description], {sharp|soft} focus, depth of field, 8k photo, HDR, professional lighting, taken with Canon EOS R5, 75mm lens",
        negative:
          "[input.negative], worst quality, bad lighting, cropped, blurry, low-quality, deformed, text, poorly drawn, bad art, bad angle, boring, low-resolution, worst quality, bad composition, terrible lighting, bad anatomy",
      },
      ...
    
    

  • I think frequency of access, and maybe a habit of turning to the resources page to look for the plugins/templates.

    I think that the resources page is an ‘all-in-one’ page for a lot of things related to Perchance that isn’t on the ‘tutorial’. I’ll ping @eatham@lemmy.world for other opinions.

    While we’re at it, maybe also create a ‘notice/terms and conditions’ regarding the use of AI on the platform. A lot of people are also asking for this, although I just redirect them to the AI FAQ that I compiled and directly on the plugin pages. Maybe an official one so it is compiled and in one place.

    Also, maybe a very long shot, and may be breaking for the user/account data (or maybe just tie it to local storage). An option to customize the navbar through account settings? Like we only want the ‘generators’, and ‘hub’ to button to show on the navigation as well as hiding the ‘ai helper’ permanently on the HTML panel than just minimizing it.