RustX commited on
Commit
fbed59c
Β·
1 Parent(s): af52a4e

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +2 -2
main.py CHANGED
@@ -22,8 +22,8 @@ def config():
22
  st.set_page_config(page_title="Speech to Text / μŒμ„±μ„ ν…μŠ€νŠΈλ‘œ", page_icon="πŸ“")
23
 
24
  # Create a data directory to store our audio files
25
- if not os.path.exists("../data"):
26
- os.makedirs("../data")
27
 
28
  # Initialize session state variables
29
  if 'page_index' not in st.session_state:
 
22
  st.set_page_config(page_title="Speech to Text / μŒμ„±μ„ ν…μŠ€νŠΈλ‘œ", page_icon="πŸ“")
23
 
24
  # Create a data directory to store our audio files
25
+ if not os.path.exists("whisper_app/data"):
26
+ os.makedirs("whisper_app/data")
27
 
28
  # Initialize session state variables
29
  if 'page_index' not in st.session_state: