We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7ade9e commit c08cc39Copy full SHA for c08cc39
backend/server.py
@@ -81,7 +81,7 @@ def translate():
81
print(filename)
82
os.remove(file_path)
83
84
- translation_string = "".join(all_translations)
+ translation_string = "".join(" " if item == "space" else item for item in all_translations)
85
final_translation = ai.call_openai_model(translation_string)
86
print(final_translation.content)
87
0 commit comments