Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -195,7 +195,7 @@ with gr.Blocks(css=css) as demo:
|
|
195 |
)
|
196 |
|
197 |
with gr.Row():
|
198 |
-
txt = gr.Textbox(scale=4, show_label=False, placeholder="
|
199 |
btn = gr.Button("Submit")
|
200 |
|
201 |
btn.click(
|
@@ -207,7 +207,7 @@ with gr.Blocks(css=css) as demo:
|
|
207 |
examples_component = gr.Examples(
|
208 |
examples=examples_state.value,
|
209 |
inputs=[txt],
|
210 |
-
label="
|
211 |
)
|
212 |
|
213 |
|
|
|
195 |
)
|
196 |
|
197 |
with gr.Row():
|
198 |
+
txt = gr.Textbox(scale=4, show_label=False, placeholder="Select question...", container=False, interactive=False)
|
199 |
btn = gr.Button("Submit")
|
200 |
|
201 |
btn.click(
|
|
|
207 |
examples_component = gr.Examples(
|
208 |
examples=examples_state.value,
|
209 |
inputs=[txt],
|
210 |
+
label="Questions"
|
211 |
)
|
212 |
|
213 |
|