TextGenerators can only return english characters

As far as I’m concerned, the TextGenerator class uses Llama 3.2 as its back end, which should be able to return non-english characters fine.

But when trying to send or return non-english characters (or just URL unsafe characters) it returns an HTTP error 400 (Bad Request) instead.

returned error


example in which the returned text is at fault

1 Like

Another issue would be incorrect interpretation of some special characters.

image

Hello! Thank you for the report, but this is actually intended behavior. Roblox currently only supports using English with TextGenerators. We have plans to expand to other languages in the future, but we do not have a definitive timeline on this yet.

Hello! Thanks for the reply, but there’s still one thing I’m concerned about: And it is the fact the LLM/TextGenerator cannot receive or send back any “URL-Unsafe” characters (such as the “&” symbol).

For sending these characters to the TextGenerator, a workaround is using HTTPService:UrlEncode, but the issue lies on receiving these “URL-Unsafe” characters from the TextGenerator, where instead of an actual response from the LLM, you just get an HTTP 400 (Bad Request) error.