Theme
Browse files
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 |
|