Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -26,15 +26,15 @@ with gr.Blocks() as demo:
|
|
| 26 |
with gr.Row():
|
| 27 |
gr.Markdown("Describe your project or study")
|
| 28 |
with gr.Row():
|
| 29 |
-
title = gr.Textbox(label='Topic you would like to submit to your focus group', lines = 5)
|
| 30 |
with gr.Row():
|
| 31 |
gr.Markdown("List all your questions")
|
| 32 |
with gr.Row():
|
| 33 |
-
question1 = gr.Textbox(label="Question 1", lines=2)
|
| 34 |
with gr.Row():
|
| 35 |
-
question2 = gr.Textbox(label="Question 2", lines=2)
|
| 36 |
with gr.Row():
|
| 37 |
-
question3 = gr.Textbox(label="Question 3", lines=2)
|
| 38 |
with gr.Tab("Focus Group Profiles Generation"):
|
| 39 |
with gr.Row():
|
| 40 |
gr.Markdown("Describe types of profiles you want in your focus group")
|
|
|
|
| 26 |
with gr.Row():
|
| 27 |
gr.Markdown("Describe your project or study")
|
| 28 |
with gr.Row():
|
| 29 |
+
title = gr.Textbox(label='Topic you would like to submit to your focus group', lines = 5, placeholder = "ex: Ice cream tastes or smartphone features")
|
| 30 |
with gr.Row():
|
| 31 |
gr.Markdown("List all your questions")
|
| 32 |
with gr.Row():
|
| 33 |
+
question1 = gr.Textbox(label="Question 1", lines=2, placeholder = "ex: What are your favorite features for a smartphone?")
|
| 34 |
with gr.Row():
|
| 35 |
+
question2 = gr.Textbox(label="Question 2", lines=2, placeholder = "ex: How much would you be willing to pay for x, y , z (in USD)?")
|
| 36 |
with gr.Row():
|
| 37 |
+
question3 = gr.Textbox(label="Question 3", lines=2, placeholder = "ex: If you had no budget limit, what would be your dream functionality for a smartphone?")
|
| 38 |
with gr.Tab("Focus Group Profiles Generation"):
|
| 39 |
with gr.Row():
|
| 40 |
gr.Markdown("Describe types of profiles you want in your focus group")
|