Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -280,7 +280,7 @@ custom_theme = gr.themes.Soft(
|
|
| 280 |
)
|
| 281 |
|
| 282 |
# Create Gradio interface with ZeroGPU support - Gradio 6 syntax
|
| 283 |
-
with gr.Blocks(fill_height=True
|
| 284 |
gr.Markdown("""
|
| 285 |
# π Mistral Vibe - AI Coding Assistant
|
| 286 |
|
|
@@ -360,5 +360,6 @@ demo.queue() # Enable queue separately in Gradio 6
|
|
| 360 |
demo.launch(
|
| 361 |
share=False,
|
| 362 |
max_threads=4,
|
| 363 |
-
show_error=True
|
|
|
|
| 364 |
)
|
|
|
|
| 280 |
)
|
| 281 |
|
| 282 |
# Create Gradio interface with ZeroGPU support - Gradio 6 syntax
|
| 283 |
+
with gr.Blocks(fill_height=True) as demo:
|
| 284 |
gr.Markdown("""
|
| 285 |
# π Mistral Vibe - AI Coding Assistant
|
| 286 |
|
|
|
|
| 360 |
demo.launch(
|
| 361 |
share=False,
|
| 362 |
max_threads=4,
|
| 363 |
+
show_error=True,
|
| 364 |
+
theme=custom_theme
|
| 365 |
)
|