Spaces:
Sleeping
Sleeping
Michael Hu
commited on
Commit
·
a8e8bfe
1
Parent(s):
cd1309d
remove unused
Browse files
app.py
CHANGED
|
@@ -6,13 +6,13 @@ Handles file upload, processing pipeline, and UI rendering
|
|
| 6 |
import streamlit as st
|
| 7 |
import os
|
| 8 |
import time
|
| 9 |
-
from dotenv import load_dotenv
|
| 10 |
from utils.stt import transcribe_audio
|
| 11 |
from utils.translation import translate_text
|
| 12 |
from utils.tts import generate_speech
|
| 13 |
|
| 14 |
# Initialize environment configurations
|
| 15 |
-
load_dotenv()
|
| 16 |
os.makedirs("temp/uploads", exist_ok=True)
|
| 17 |
os.makedirs("temp/outputs", exist_ok=True)
|
| 18 |
|
|
|
|
| 6 |
import streamlit as st
|
| 7 |
import os
|
| 8 |
import time
|
| 9 |
+
# from dotenv import load_dotenv
|
| 10 |
from utils.stt import transcribe_audio
|
| 11 |
from utils.translation import translate_text
|
| 12 |
from utils.tts import generate_speech
|
| 13 |
|
| 14 |
# Initialize environment configurations
|
| 15 |
+
# load_dotenv()
|
| 16 |
os.makedirs("temp/uploads", exist_ok=True)
|
| 17 |
os.makedirs("temp/outputs", exist_ok=True)
|
| 18 |
|