nickmuchi commited on
Commit
adbb180
β€’
1 Parent(s): 5b6b68a

Update 01_🏠_Home.py

Browse files
Files changed (1) hide show
  1. 01_🏠_Home.py +3 -1
01_🏠_Home.py CHANGED
@@ -24,7 +24,9 @@ asr_model_options = ['base.en','small.en']
24
  if 'sbox' not in st.session_state:
25
  st.session_state.sbox = ''
26
 
27
- asr_model_name = st.sidebar.selectbox("Whisper Model Options", options=asr_model_options, key='sbox')
 
 
28
 
29
  st.markdown("## Earnings Call Analysis Whisperer")
30
 
 
24
  if 'sbox' not in st.session_state:
25
  st.session_state.sbox = ''
26
 
27
+ asr_model_name = st.sidebar.selectbox("Whisper Model Options", options=asr_model_options)
28
+
29
+ st.session_state.sbox = asr_model_name
30
 
31
  st.markdown("## Earnings Call Analysis Whisperer")
32