[Issue] Cannot Access ElevenLabs API in ai-character-chat (Fixed)
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....
Is it perhaps header values you're missing, or something? Certainly possible that there is a big though and I'm just not hitting it with the above example for whatever reason.
Either way this motivated me to finally get around to creating a CORs-bypassing plugin: https://perchance.org/fetch-plugin That way I can ensure strong backwards-compatibility and performance instead of just relying on a little glitch.com server, which won't scale, and doesn't have good perf/uptime guarantees. I'll wait to hear back from you before integrating it into ai-character-chat just so we can don't end up making it harder for you to reproduce the bug you were up against here.
@[email protected]@[email protected] Sorry just realized the plugin is not quite ready for prime time! Need to make some breaking changes so I've commented out the code for now. The moment I started integrating it into ai-character-chat I realised it's a bad idea to overwrite the existing fetch - should instead just be a separate "superFetch" or whatever because otherwise if you need to e.g. download a big file that you know doesn't have any CORs problems, you're forced to go through the proxy, which will be slower. Will update soon hopefully, if not tomorrow. Sorry for trouble if you'd started playing with it!
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 🫡
Sorry about this! I really want to create a stable platform that people can build upon without having annoying problems, so it's top priority for me to solve stuff like this. It's hard enough to debug custom code without having to deal with stuff like this 😓
That said, would you be able to share a character URL? I tried this code and it worked correctly:
If it works for you now, then maybe it was a temporary problem. If that's the case, I'll set up a monitor to do this once per minute, and see if I can catch any problems and correlate them with server logs/errors.