Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -8,11 +8,14 @@ chat = ChatWrapper()
|
|
8 |
block = gr.Blocks(css=".gradio-container {background-color: gray}")
|
9 |
|
10 |
with block:
|
|
|
|
|
|
|
|
|
|
|
11 |
with gr.Row():
|
12 |
message = gr.Textbox(
|
13 |
-
label="
|
14 |
-
Our conversation is strictly confidential and I will not remember it when you come back another time.
|
15 |
-
What would you like to talk about?",
|
16 |
placeholder="Ask questions about the most recent state of the union",
|
17 |
lines=1,
|
18 |
)
|
|
|
8 |
block = gr.Blocks(css=".gradio-container {background-color: gray}")
|
9 |
|
10 |
with block:
|
11 |
+
with gr.Row():
|
12 |
+
disclaimer = gr.Textbox(
|
13 |
+
"I am an AI ChatBot and I am here to assist you with whatever is bothering you. "
|
14 |
+
"Our conversation is strictly confidential and I will not remember it when you come back another time."
|
15 |
+
)
|
16 |
with gr.Row():
|
17 |
message = gr.Textbox(
|
18 |
+
label="What would you like to talk about?",
|
|
|
|
|
19 |
placeholder="Ask questions about the most recent state of the union",
|
20 |
lines=1,
|
21 |
)
|