Spaces:
Sleeping
Sleeping
Update ins2.txt
Browse files
ins2.txt
CHANGED
@@ -13,9 +13,9 @@ def translate_to_japanese(api_key, text):
|
|
13 |
"""
|
14 |
# Validate input
|
15 |
if not api_key:
|
16 |
-
return "Error: API key is missing."
|
17 |
if not text:
|
18 |
-
return "Error: Input text is empty."
|
19 |
|
20 |
# Set the OpenAI API key
|
21 |
openai.api_key = api_key
|
@@ -92,42 +92,63 @@ english_text = st.text_area("Enter the English text to translate")
|
|
92 |
# Button to trigger the translation
|
93 |
if st.button("Translate"):
|
94 |
if api_key and english_text:
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
st.
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
else:
|
132 |
if not api_key:
|
133 |
st.error("API key is missing. Please add it as a secret in Hugging Face Settings.")
|
|
|
13 |
"""
|
14 |
# Validate input
|
15 |
if not api_key:
|
16 |
+
return "Error: API key is missing.", None
|
17 |
if not text:
|
18 |
+
return "Error: Input text is empty.", None
|
19 |
|
20 |
# Set the OpenAI API key
|
21 |
openai.api_key = api_key
|
|
|
92 |
# Button to trigger the translation
|
93 |
if st.button("Translate"):
|
94 |
if api_key and english_text:
|
95 |
+
# Initialize the progress bar
|
96 |
+
progress_bar = st.progress(0)
|
97 |
+
progress_text = st.empty() # To show the progress text
|
98 |
+
|
99 |
+
try:
|
100 |
+
# Step 1: Request translation
|
101 |
+
progress_text.text("Translating text...")
|
102 |
+
progress_bar.progress(33) # Update progress bar to 33%
|
103 |
+
|
104 |
+
japanese_text, pronunciation = translate_to_japanese(api_key, english_text)
|
105 |
+
|
106 |
+
# Step 2: Check if translation was successful
|
107 |
+
if pronunciation:
|
108 |
+
progress_text.text("Generating Romaji pronunciation...")
|
109 |
+
progress_bar.progress(66) # Update progress bar to 66%
|
110 |
+
|
111 |
+
# Clean pronunciation (remove unnecessary parts)
|
112 |
+
cleaned_pronunciation = clean_pronunciation(pronunciation)
|
113 |
+
|
114 |
+
st.markdown("### Translation Result:")
|
115 |
+
st.write(f"**English Text:** {english_text}")
|
116 |
+
st.write(f"**Japanese Output:** {japanese_text}")
|
117 |
+
st.write(f"**Pronunciation:** {cleaned_pronunciation}")
|
118 |
+
|
119 |
+
# Save the result in a text file
|
120 |
+
result_text = f"English Text: {english_text}\n\nJapanese Translation: {japanese_text}\nPronunciation: {cleaned_pronunciation}"
|
121 |
+
|
122 |
+
# Write to a text file
|
123 |
+
with open("translation_result.txt", "w") as file:
|
124 |
+
file.write(result_text)
|
125 |
+
|
126 |
+
# Create a download button for the user to download the file
|
127 |
+
with open("translation_result.txt", "rb") as file:
|
128 |
+
st.download_button(
|
129 |
+
label="Download Translation Result",
|
130 |
+
data=file,
|
131 |
+
file_name="translation_result.txt",
|
132 |
+
mime="text/plain"
|
133 |
+
)
|
134 |
+
|
135 |
+
# Step 3: Generate audio for pronunciation
|
136 |
+
progress_text.text("Generating pronunciation audio...")
|
137 |
+
progress_bar.progress(100) # Update progress bar to 100%
|
138 |
+
|
139 |
+
audio_file_path = generate_audio_from_text(cleaned_pronunciation)
|
140 |
+
|
141 |
+
# Provide a button to play the pronunciation audio
|
142 |
+
st.audio(audio_file_path, format="audio/mp3")
|
143 |
+
|
144 |
+
translateimg2 = Image.open("v3.png") # Ensure the file is in the correct directory
|
145 |
+
st.image(translateimg2, width=150) # Adjust the size as per preference
|
146 |
+
|
147 |
+
else:
|
148 |
+
st.error(japanese_text) # Display error message if API call fails
|
149 |
+
|
150 |
+
except Exception as e:
|
151 |
+
st.error(f"An error occurred: {str(e)}")
|
152 |
else:
|
153 |
if not api_key:
|
154 |
st.error("API key is missing. Please add it as a secret in Hugging Face Settings.")
|