this post was submitted on 07 May 2024
4 points (100.0% liked)

Perchance - Create a Random Text Generator

448 readers
14 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
 

I've been made aware that the code I've written to access text-to-speech from ElevenLabs API is no longer working.

I've tested it and it seems that the CORS-Proxy that is being used in ai-character-chat currently doens't allow POST methods (which is being used to 'post' the text to be 'spoken' in ElevenLabs).

Not a major/priority issue but might be nice to be fixed. I also wonder how many are using text to speech (even just using the Speech Synthesis code) in the ai-character-chat....

you are viewing a single comment's thread
view the rest of the comments
[–] perchance 2 points 6 months ago* (last edited 6 months ago) (2 children)

Okay, thanks for the example, I think it's all fixed now. Hopefully I didn't break anything. Been up for two days straight tho so I wouldn't bet on it, but I did some basic tests and it seems good. Will check lemmy messages first thing tomorrow 🫡

[–] Alllo 2 points 6 months ago (1 children)

haha. one and a half days for me and maybe 30+ hours straight just now on something with your wonderful comments update :) can't wait to share it! No sleeping yet!

[–] [email protected] 2 points 6 months ago* (last edited 6 months ago)

Same 😄

I'll complete and share the project possibly (and hopefully) as an actual plugin after the post-announcement update of my generator hub page, but I'll be releasing the "early implementations" somewhere in my experiment generator so everyone can try it right now and give some feedback on it.

[–] VioneT 1 points 6 months ago* (last edited 6 months ago) (1 children)

It seems to work now, though there are some inconsistencies with the chunk text arrangement, which causes the text in the stream to be quite jumbled. I'm looking into it now, I'll update if it is still inconsistent with the order.

EDIT: It is inconsistent with the order of the chunks. Maybe there is a way to parse it in order? Currently I'm having it pushed into an array, then sort that array by the index, then join the sorted array to be a string before pushing it to the t2s, though it is still inconsistent and sometimes the streaming finishes and the text to be spoken is not yet queued up.

Here are the code hacks to re-sort the chunks to order lmao.

[–] perchance 1 points 6 months ago (1 children)

I wasn't able to reproduce this when trying it with this code:

oc.thread.on("StreamingMessage", async function (data) {
  let lastChunkI = -1;
  let chunksText = "";
  let chunks = [];
  for await (let chunk of data.chunks) {
    chunks.push(chunk);
    chunksText += chunk.text;
    if(chunk.index !== lastChunkI+1) console.warn("OUT OF ORDER CHUNKS!", chunks);
    lastChunkI++;
  }
  console.log("chunks:", chunks);
  console.log("chunksText:", chunksText);
});

Or have I misunderstood the problem?

[–] VioneT 1 points 6 months ago* (last edited 6 months ago) (1 children)

You have. On trying your code. it gave me the OUT OF ORDER CHUNKS!:



Here's the character I used with the custom code to check the out of order chunks.: Link to Character

[–] perchance 2 points 6 months ago* (last edited 6 months ago) (1 children)

Ahh, thank you! Was very confused at first because I iteratively made your character closer to the default Assistant to work out why it was happening in yours but not the assistant, and found that the profile pic was the cause lmao, but eventually realised that it was because data url vs normal URL, and the data url (being larger) was making an async IndexedDB request take a few milliseconds longer, which caused the out-of-order-ness. But I shouldn't have even been doing those db requests in the first place, so I've removed them, and this race condition type bug shouldn't be possible at all now. Thanks again!!

[–] VioneT 2 points 6 months ago

Niiceeeeeeeeeee it is good now. Thanks again!