Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,4 @@
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
|
@@ -20,13 +21,13 @@ block = gr.Blocks(css=".gradio-container {background-color: lightblue}")
|
|
20 |
|
21 |
with block:
|
22 |
with gr.Row():
|
23 |
-
gr.HTML("Omdena AI Chatbot For Mental Health and Well Being")
|
24 |
|
25 |
with gr.Row():
|
26 |
-
label = "WELCOME"
|
27 |
disclaimer = gr.Textbox(
|
28 |
"I am an AI ChatBot and I am here to assist you with whatever is bothering you. "
|
29 |
-
"Our conversation is strictly confidential and I will not remember it when you come back another time."
|
|
|
30 |
)
|
31 |
|
32 |
with gr.Row():
|
|
|
1 |
+
# Import dependencies
|
2 |
import gradio as gr
|
3 |
|
4 |
|
|
|
21 |
|
22 |
with block:
|
23 |
with gr.Row():
|
24 |
+
gr.HTML("<h3>Omdena AI Chatbot For Mental Health and Well Being</h3>")
|
25 |
|
26 |
with gr.Row():
|
|
|
27 |
disclaimer = gr.Textbox(
|
28 |
"I am an AI ChatBot and I am here to assist you with whatever is bothering you. "
|
29 |
+
"Our conversation is strictly confidential and I will not remember it when you come back another time.",
|
30 |
+
label = "WELCOME"
|
31 |
)
|
32 |
|
33 |
with gr.Row():
|