Upload app.py with huggingface_hub
Browse files
app.py
CHANGED
|
@@ -160,7 +160,7 @@ def transcribe_audio(
|
|
| 160 |
return tmp.name, summary
|
| 161 |
|
| 162 |
|
| 163 |
-
with gr.Blocks(
|
| 164 |
with gr.Column(elem_id="col-container"):
|
| 165 |
gr.Markdown(
|
| 166 |
"""
|
|
@@ -226,4 +226,4 @@ with gr.Blocks(theme=gr.themes.Citrus(), css=CSS) as demo:
|
|
| 226 |
cache_mode="lazy",
|
| 227 |
)
|
| 228 |
|
| 229 |
-
demo.launch(mcp_server=True)
|
|
|
|
| 160 |
return tmp.name, summary
|
| 161 |
|
| 162 |
|
| 163 |
+
with gr.Blocks() as demo:
|
| 164 |
with gr.Column(elem_id="col-container"):
|
| 165 |
gr.Markdown(
|
| 166 |
"""
|
|
|
|
| 226 |
cache_mode="lazy",
|
| 227 |
)
|
| 228 |
|
| 229 |
+
demo.launch(mcp_server=True, theme=gr.themes.Citrus(), css=CSS)
|