Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -25,7 +25,7 @@ os.makedirs(OUTPUT_DIR, exist_ok=True)
|
|
| 25 |
|
| 26 |
# Constants
|
| 27 |
VALID_EXTENSIONS = ('.wav', '.mp3', '.m4a', '.flac')
|
| 28 |
-
MAX_FILE_SIZE =
|
| 29 |
|
| 30 |
|
| 31 |
def check_health() -> str:
|
|
@@ -144,7 +144,7 @@ with gr.Blocks(title="EvalBot Interview Analysis System", theme=gr.themes.Soft()
|
|
| 144 |
gr.Markdown("""
|
| 145 |
# 🎤 EvalBot: Automated Interview Analysis System
|
| 146 |
Provide multiple audio file URLs or upload multiple audio files to analyze speaker performance.
|
| 147 |
-
Supported formats: WAV, MP3, M4A, FLAC (max
|
| 148 |
""")
|
| 149 |
|
| 150 |
with gr.Row():
|
|
|
|
| 25 |
|
| 26 |
# Constants
|
| 27 |
VALID_EXTENSIONS = ('.wav', '.mp3', '.m4a', '.flac')
|
| 28 |
+
MAX_FILE_SIZE = 300 * 1024 * 1024 # 300MB
|
| 29 |
|
| 30 |
|
| 31 |
def check_health() -> str:
|
|
|
|
| 144 |
gr.Markdown("""
|
| 145 |
# 🎤 EvalBot: Automated Interview Analysis System
|
| 146 |
Provide multiple audio file URLs or upload multiple audio files to analyze speaker performance.
|
| 147 |
+
Supported formats: WAV, MP3, M4A, FLAC (max 300MB per file).
|
| 148 |
""")
|
| 149 |
|
| 150 |
with gr.Row():
|