patti-j commited on
Commit
d2a8971
1 Parent(s): ad27618

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -3
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="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
- 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
  )