On the ai-text-plugin, there is a way to get the inputs that were sent to the AI using the onStart(data) function:

onStart(data) - the code you put in this will run at the start of the generation process. You can access the inputs being used with data.inputs.instruction, data.inputs.startWith, etc.

I am wondering if we could also get the same for the text-to-image-plugin?

It can be either on the onStart(data) or on the onFinish(data) in which we can get the inputs/static values that were used for the response of the AI e.g. data.inputs.prompt, data.inputs.negativePrompt, etc.

With this, some features that can be implemented is a local history of past generations, in which the previous inputs were temporarily stored in the storage (or on the local storage so even if the page reloaded, the history is saved), then the users can revisit the previous generations (I have set up something similar like this on my text to image generators but they have some hacks to work).

This is not really a priority but might be good to have. Thanks!

      • ✧✨🌿Allo🌿✨✧@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        0
        ·
        6 months ago

        hiiiii :) i find the people on this one nicer than lemme. it’s also a canadian server and canadians are stereotypically nicer, so that may be why.

        there is a lemmy ai art group and a sh.itjustworks ai art group.

        i posted this image in both groups and the one to lemmy was downvoted while people were hostile while the one on sh.itjustworks was upvoted +24 while people made funny or supportive comments. I then explored farther in to that and it seems it is a difference between lemmy and sh.itjustworks that spans many or most groups in each. My GUESS is it’s the canadian culture of ‘vicious hostility’ being frowned upon instead of acceptable.

        • BluePower@mastodon.social
          link
          fedilink
          arrow-up
          0
          ·
          edit-2
          6 months ago

          @allo That’s interesting, and the server’s also doesn’t require any sort of application to sign up. I don’t know if I should do that, but sometimes I wanted to answer @perchance’s comments in posts because they aren’t displaying in Mastodon very well.

          • ✧✨🌿Allo🌿✨✧@sh.itjust.works
            link
            fedilink
            English
            arrow-up
            0
            ·
            6 months ago

            i initially made a lemmy account and everything works great on lemmy and same with where i am now. @[email protected]

            i think you should freely explore around and try making accounts anywhere that calls to you. As you saw, I did make a Mastodon account, but was never really able to get in to it and abandoned it in favor of the Lemmy style of server, and eventually then settled on this specific one.

            Purely my own opinion is I believe you should make an account on Lemmy or sh.itjustworks and try it for a few days. I see how you have to ask other people to do stuff when you are on Mastodon and, while not bad since we all happily help, it seems like being on Lemmy or sh.itjustworks would be an upgrade that, if you stuck with for long enough, you would not go back to Mastodon from.

            • BluePower@mastodon.social
              link
              fedilink
              arrow-up
              0
              ·
              6 months ago

              @allo Yep. It feels a bit scary at first when I saw the first few posts and comments but I think I’ll start exploring for a bit and then eventually start creating my account there.

              • ✧✨🌿Allo🌿✨✧@sh.itjust.works
                link
                fedilink
                English
                arrow-up
                0
                ·
                6 months ago

                @[email protected] ok i updated my suggestion.

                i think you should just go here: https://lemmy.world/c/perchance

                which is where the community tab of Perchance goes. Perchance looks like basically your main community and *everyone else is seeing and interacting in the Perchance forum thru this method. Feel free to not even browse outside Perchance forum initially even. I notice in mastodon you are missing alot of aspects of posts we all see, like the entire ‘votes’ aspect. If you make the free lemmy account, you can just post here as is comfortable for you, except now able to see and interact fully. That’s what I suggest. I think, at least initially, that’s better for you than where I am.

                sign up here: https://lemmy.world/c/perchance

                add your avatar and stuff.

                browse just here where you always have, xcept with full senses and abilities.

                this is my modified suggestion :)

  • wthit56@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 month ago

    I didn’t know there was an onFinish() callback on the settings itself–that’s useful! Looking at the plugin itself I can see it there.

    I can’t find anything about onStart though. Is that still a thing?

    • VioneT@lemmy.worldOPM
      link
      fedilink
      English
      arrow-up
      1
      ·
      1 month ago

      I don’t think it was implemented. Only the data.inputs on the onFinish was added.

      • wthit56@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        ·
        1 month ago

        Oooh, in the post you were saying on the text plugin there is onStart, but there isn’t an onStart for image gen, weren’t you? Sorry, I misread that. 👍

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

    Done! But I haven’t checked if it’s working yet - let me know if there are any issues.

    • VioneT@lemmy.worldOPM
      link
      fedilink
      English
      arrow-up
      2
      ·
      6 months ago

      Any way to get the ‘seed’ of the image as well. Currently, upon using data.inputs.seed it would return -1 if no seed is provided, although upon hovering (and clicking the ‘i’ icon) we can see the actual seed. The data.inputs.seed works fine if we actually input the seed, but on the default/randomized seed, it just returns -1.