Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -108,7 +108,7 @@ with gr.Blocks() as demo:
|
|
108 |
with gr.Box(style=interface_style["box"]):
|
109 |
with gr.Row():
|
110 |
prompt = gr.Textbox(
|
111 |
-
placeholder="
|
112 |
lines=2,
|
113 |
label="Query",
|
114 |
value=None,
|
@@ -138,7 +138,7 @@ with gr.Blocks() as demo:
|
|
138 |
style=interface_style["chatbox"],
|
139 |
)
|
140 |
with gr.Row():
|
141 |
-
submit = gr.Button(style=interface_style["button"])
|
142 |
clear = gr.Button(value="Clear", style=interface_style["button"])
|
143 |
|
144 |
submit.click(
|
|
|
108 |
with gr.Box(style=interface_style["box"]):
|
109 |
with gr.Row():
|
110 |
prompt = gr.Textbox(
|
111 |
+
placeholder="Ask anything",
|
112 |
lines=2,
|
113 |
label="Query",
|
114 |
value=None,
|
|
|
138 |
style=interface_style["chatbox"],
|
139 |
)
|
140 |
with gr.Row():
|
141 |
+
submit = gr.Button(value = 'Submit', style=interface_style["button"])
|
142 |
clear = gr.Button(value="Clear", style=interface_style["button"])
|
143 |
|
144 |
submit.click(
|