ThatOneCoder commited on
Commit
7d15297
·
verified ·
1 Parent(s): 8da0fb2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -6,11 +6,8 @@ state=st.session_state
6
  if 'text_received' not in state:
7
  state.text_received=[]
8
 
9
- c1,c2=st.columns(2)
10
- with c1:
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)