WSLINMSAI commited on
Commit
f9e43da
·
verified ·
1 Parent(s): 47bf7c1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -140,9 +140,9 @@ body {
140
  }
141
  """
142
 
143
- # Build the custom Blocks interface using gr.Box instead of gr.Container
144
  with gr.Blocks(css=custom_css) as demo:
145
- with gr.Box(elem_classes=["container"]):
146
  # Header with a dental icon in the title
147
  with gr.Column(elem_classes=["header"]):
148
  gr.Markdown("## 🦷 Advanced Dental Terminology Chatbot")
 
140
  }
141
  """
142
 
143
+ # Build the custom Blocks interface using gr.Column as our container.
144
  with gr.Blocks(css=custom_css) as demo:
145
+ with gr.Column(elem_classes=["container"]):
146
  # Header with a dental icon in the title
147
  with gr.Column(elem_classes=["header"]):
148
  gr.Markdown("## 🦷 Advanced Dental Terminology Chatbot")