this post was submitted on 31 Jul 2024
2 points (100.0% liked)

Perchance - Create a Random Text Generator

448 readers
16 users here now

⚄︎ Perchance

This is a Lemmy Community for perchance.org, a platform for sharing and creating random text generators.

Feel free to ask for help, share your generators, and start friendly discussions at your leisure :)

This community is mainly for discussions between those who are building generators. For discussions about using generators, especially the popular AI ones, the community-led Casual Perchance forum is likely a more appropriate venue.

See this post for the Complete Guide to Posting Here on the Community!

Rules

1. Please follow the Lemmy.World instance rules.

2. Be kind and friendly.

  • Please be kind to others on this community (and also in general), and remember that for many people Perchance is their first experience with coding. We have members for whom English is not their first language, so please be take that into account too :)

3. Be thankful to those who try to help you.

  • If you ask a question and someone has made a effort to help you out, please remember to be thankful! Even if they don't manage to help you solve your problem - remember that they're spending time out of their day to try to help a stranger :)

4. Only post about stuff related to perchance.

  • Please only post about perchance related stuff like generators on it, bugs, and the site.

5. Refrain from requesting Prompts for the AI Tools.

  • We would like to ask to refrain from posting here needing help specifically with prompting/achieving certain results with the AI plugins (text-to-image-plugin and ai-text-plugin) e.g. "What is the good prompt for X?", "How to achieve X with Y generator?"
  • See Perchance AI FAQ for FAQ about the AI tools.
  • You can ask for help with prompting at the 'sister' community Casual Perchance, which is for more casual discussions.
  • We will still be helping/answering questions about the plugins as long as it is related to building generators with them.

6. Search through the Community Before Posting.

  • Please Search through the Community Posts here (and on Reddit) before posting to see if what you will post has similar post/already been posted.

founded 1 year ago
MODERATORS
2
submitted 3 months ago* (last edited 3 months ago) by wthit56 to c/perchance
 

Clicking the "continue" button starts loading and then just stops. Nothing is added. https://perchance.org/bug-continue-doesn-t-work-894u98#edit

Sometimes if I add something it continues. 🤷

This example is very simple. Not sure why it doesn't work. And not sure why it does work on certain existing generators. Though on other existing generators (eg. the demo generators from the ai-text-plugin page).

In one I'm actually working on, that [+] button doesn't reappear either, if I click "continue" or "edit."

Also in my own project "Edit" throws an error:

Cannot read properties of null (reading 'getBoundingClientRect')
> let updateCoverPosition = () => {
> let rect = el.getBoundingClientRect();

> in editAiTextResponseClickHandler(el)
> el is passed as null

> which comes from this.closest('.ai-text-response-ctn')

Edit: I made a test generator to see how different ways of starting the ai() call affects such bugs. Seems using outputTo doesn't show the loading icon, and the edit box just appears at the end of the page which I think isn't intentional.

top 2 comments
sorted by: hot top controversial new old
[–] perchance 2 points 3 months ago (1 children)

RE not continuing, this is because the AI "decided" that that should be the natural end of the output. But I think you're right - the continue button would be more useful if it was a little bit forceful in telling the AI to keep going. So I've just added some code so if it generates no text when continue is clicked, then it'll do another attempt where it first adds a newline to the startWith. It's a bit crude, but it seems to do the trick, and this is just UI stuff so it's safe to experiment (i.e. no backwards-compat risk).

And not sure why it does work on certain existing generators

It's the same on any generator, but if the generator uses a stopSequence, then continuing would be more likely to produce more text, since it probably stopped due to a stop sequence rather than at a natural stopping point.

Seems using outputTo doesn’t show the loading icon, and the edit box just appears at the end of the page which I think isn’t intentional.

Thanks! Fixed.

Let me know if there are any other issues or things I missed.

[–] wthit56 1 points 3 months ago

Cheers 👍

One thing on this topic that was frustrating me was, a continue makes a new settings object, referencing the regular properties. But not all properties of the object (which I was using). And not simply using the original object so it would work perfectly the same as before to continue the thread.

So I had to create a whole object myself so that I could use closures over variables for the values I needed instead of using properties on the settings object, which thankfully worked. (Sometimes it seems closures are lost depending on the circumstances.)

Ideally it would just use that original settings object but I guess there's some issue with doing that. But if it could make a shallow copy of the entire object that would at least work for more use cases.