rohan13 commited on
Commit
9e87ac8
·
1 Parent(s): 204a9c1
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -67,7 +67,9 @@ def get_first_message(history):
67
  def bot(history):
68
  return history
69
 
70
- with gr.Blocks() as demo:
 
 
71
 
72
  chatbot = gr.Chatbot(get_first_message([]), elem_id="chatbot", label='Coursera Chatbot').style(height=500, container=False)
73
 
 
67
  def bot(history):
68
  return history
69
 
70
+ with gr.Blocks(theme='snehilsanyal/scikit-learn') as demo:
71
+
72
+ gr.HTML("<h1 style='text-align: center;'>Course Assistant - 3D Printing Applications</h1>")
73
 
74
  chatbot = gr.Chatbot(get_first_message([]), elem_id="chatbot", label='Coursera Chatbot').style(height=500, container=False)
75