Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -161,6 +161,10 @@ audio = audiorecorder("Click to record", "Click to stop recording", "Click to pa
|
|
161 |
# JB:
|
162 |
# https://docs.streamlit.io/develop/concepts/architecture/caching
|
163 |
# @st.cache_data
|
|
|
|
|
|
|
|
|
164 |
#@st.cache_resource # 👈 Add the caching decorator
|
165 |
def audio_export(audio_wav_file, format):
|
166 |
# audio.export("audio.wav", format="wav") # ORIGINAL
|
@@ -271,6 +275,21 @@ st.write("text_to_transcribe: ", text_to_transcribe)
|
|
271 |
# text_to_transcribe:
|
272 |
# князем Данилом Романовичем біля Звенигорода і названий на честь його сина Лева Сьогодні Львів має площу 155 квадратних кілометрів з безліччю громадських будинків, кафе, магазинів
|
273 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
|
|
|
|
|
|
|
|
|
275 |
|
276 |
|
|
|
161 |
# JB:
|
162 |
# https://docs.streamlit.io/develop/concepts/architecture/caching
|
163 |
# @st.cache_data
|
164 |
+
# @st.cache_resource # 👈 Add the caching decorator WERKT WEL,
|
165 |
+
# MAAR HOUDT DAN "audio.wav" FILE VAST BINNEN DE HUIDIGE SESSIE
|
166 |
+
# EN ALS JE DAN EEN NIEUWE OPNAME MAAKT, BLIJFT DE OUDE "audio.wav" BESTAAN
|
167 |
+
# EN WORDT DAN NIET MET DE NIEUWE OPNAME OVERSCHREVEN !
|
168 |
#@st.cache_resource # 👈 Add the caching decorator
|
169 |
def audio_export(audio_wav_file, format):
|
170 |
# audio.export("audio.wav", format="wav") # ORIGINAL
|
|
|
275 |
# text_to_transcribe:
|
276 |
# князем Данилом Романовичем біля Звенигорода і названий на честь його сина Лева Сьогодні Львів має площу 155 квадратних кілометрів з безліччю громадських будинків, кафе, магазинів
|
277 |
|
278 |
+
###########################################################################################################
|
279 |
+
# VERTALEN NAAR NEDERLANDS VAN DE CONTENT IN text_to_transcribe:
|
280 |
+
# (PROBEER OOK EEN 2 STAPS VERTALING: EERST NAAR ENGELS,
|
281 |
+
# EN DAN DIE ENGELSE TEKST NAAR NEDERLANDS TE VERTALEN.
|
282 |
+
# DOEL: DE VERTALING VAN OEKRAÏENS (VIA ENGELS) NAAR NEDERLANDS TE VERBETEREB.)
|
283 |
+
response = chain.invoke({"text": \
|
284 |
+
"""Translate the following text into correct Dutch language
|
285 |
+
and do not use any other language for your response whatsover or you will get severly punished.
|
286 |
+
Do not translate names of places, towns and other geographical names.
|
287 |
+
Do not translate names of people.
|
288 |
+
""" + text_to_transcribe}) # JB TRANSLATE TO DUTCH
|
289 |
|
290 |
+
# Print the Response.
|
291 |
+
# print(response.content)
|
292 |
+
st.write("ORIGINELE TEKST : ", text_to_transcribe)
|
293 |
+
st.write("NEDERLANDSE VERTALING HIERVAN: ", response.content)
|
294 |
|
295 |
|