Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -6,11 +6,8 @@ state=st.session_state
|
|
6 |
if 'text_received' not in state:
|
7 |
state.text_received=[]
|
8 |
|
9 |
-
|
10 |
-
|
11 |
-
st.write("Convert speech to text:")
|
12 |
-
with c2:
|
13 |
-
text=speech_to_text(language='en',use_container_width=True,just_once=True,key='STT')
|
14 |
|
15 |
if text:
|
16 |
state.text_received.append(text)
|
|
|
6 |
if 'text_received' not in state:
|
7 |
state.text_received=[]
|
8 |
|
9 |
+
st.write("Convert speech to text:")
|
10 |
+
text=speech_to_text(language='en',use_container_width=True,just_once=True,key='STT')
|
|
|
|
|
|
|
11 |
|
12 |
if text:
|
13 |
state.text_received.append(text)
|