shukdevdatta123 commited on
Commit
18fba9a
·
verified ·
1 Parent(s): 1275944

Update ins2.txt

Browse files
Files changed (1) hide show
  1. ins2.txt +59 -38
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
- japanese_text, pronunciation = translate_to_japanese(api_key, english_text)
96
- if pronunciation:
97
- # Clean pronunciation (remove unnecessary parts)
98
- cleaned_pronunciation = clean_pronunciation(pronunciation)
99
-
100
- st.markdown("### Translation Result:")
101
- st.write(f"**English Text:** {english_text}")
102
- st.write(f"**Japanese Output:** {japanese_text}")
103
- st.write(f"**Pronunciation:** {cleaned_pronunciation}")
104
-
105
- # Save the result in a text file
106
- result_text = f"English Text: {english_text}\n\nJapanese Translation: {japanese_text}\nPronunciation: {cleaned_pronunciation}"
107
-
108
- # Write to a text file
109
- with open("translation_result.txt", "w") as file:
110
- file.write(result_text)
111
-
112
- # Create a download button for the user to download the file
113
- with open("translation_result.txt", "rb") as file:
114
- st.download_button(
115
- label="Download Translation Result",
116
- data=file,
117
- file_name="translation_result.txt",
118
- mime="text/plain"
119
- )
120
-
121
- # Generate audio for pronunciation
122
- audio_file_path = generate_audio_from_text(cleaned_pronunciation)
123
-
124
- # Provide a button to play the pronunciation audio
125
- st.audio(audio_file_path, format="audio/mp3")
126
-
127
- translateimg2 = Image.open("v3.png") # Ensure the file is in the correct directory
128
- st.image(translateimg2, width=150) # Adjust the size as per preference
129
- else:
130
- st.error(japanese_text) # Display error message if API call fails
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.")