-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert special characters, like accents to the right ASCII char code #8
Comments
Hmm... That's not a standard ASCII character. I'm not sure if DOS systems can print such an Extended ASCII character but I can check. It could be doable. If you don't mind, can you send me the prompt you gave to ChatGPT to generate an output that has this character? Including screenshots of the garbage and the raw JSON output that has this issue. |
DOS can print those chars. |
Can I check if the expected output is supposed to be the following?
For "Il/Elle" and "Ils/Elles", are those actually printed in the correct way? |
This output is 100% correct |
Solved in latest releases https://github.com/yeokm1/doschgpt/releases by converting from Unicode to Code Page 437 |
For example, the letter "é" should be converted to char 130(dec). Right now we get somekind of garbage.
The text was updated successfully, but these errors were encountered: