akhaliq HF Staff commited on
Commit
c7b024e
Β·
verified Β·
1 Parent(s): bac1c21

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
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, theme=custom_theme) as demo:
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
  )