Heyo everyone, recently found perchance and have been pretty amazed by it. Been using the AI Character Chat generator. I’m not too well versed in editing code, so some of these things go above my head, but I was wondering if there was a way to have the /image button function to include a specific art style while still using the description of the chat as to generate the scene?

I made a makeshift work around by creating a shortcut that has a general description of the character and I’ve found simply including the words " art by Ilya Kuvshinov, Kantoku art, very detailed anime art by Redjuice." produces the style I want , which is all fine, but I’d really prefer the shortcut also depicting the scene.

Would love any help on the issue!

  • allo
    link
    English
    2
    edit-2
    9 months ago

    sounds like you have an avenue in to coding :)

    I’m going to think you have something like this you are looking at: https://perchance.org/ahfyy52y5c which is a near replica of the generator i found on google that got me in to perchance. Tho hints in your text indicate you may be working off something worse idk

    anyway, click Edit, then see in that wall of text on the left where it says:

      imageOptions // <-- options for the text-to-image plugin that generates the images: https://perchance.org/text-to-image-plugin
        saveTitle = ([input.artStyle.getName]) [input.description] // .getName is a built-in Perchance property that gets the name of a given list/sublist/node
        prompt = [input.artStyle.prompt], natural beauty, [input.mystyle]
        negativePrompt = [input.artStyle.negative], ugly, amputee, deformed, [input.mynegative]
        resolution = [input.shape]
        guidanceScale = [input.accuracy]
    

    that imageOptions is what we feed in to the image. Look at how the prompt is [input.artStyle.prompt], natural beauty, [input.mystyle]. You could add " art by Ilya Kuvshinov, Kantoku art, very detailed anime art by Redjuice". Thus changing the line to: [input.artStyle.prompt], natural beauty, [input.mystyle], art by Ilya Kuvshinov, Kantoku art, very detailed anime art by Redjuice Then, every time that image is updated, it will naturally include " art by Ilya Kuvshinov, Kantoku art, very detailed anime art by Redjuice"

    If the generator you are working with isn’t like this, my advice is to post a link to it and someone will help.