Tycohs commited on
Commit
d0f206a
·
1 Parent(s): 9aadbb7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -11,24 +11,32 @@ with gr.Blocks() as demo:
11
  with gr.Tab("Enquiry Description"):
12
  with gr.Row():
13
  gr.Markdown("Describe your project or study")
 
14
  title = gr.Textbox(label='Topic of our study', lines = 5)
15
  with gr.Row():
16
  gr.Markdown("List all your questions")
 
17
  question1 = gr.Textbox(label="Question 1", lines=2)
 
18
  question2 = gr.Textbox(label="Question 2", lines=2)
 
19
  question3 = gr.Textbox(label="Question 3", lines=2)
20
  with gr.Tab("Focus Group Selection"):
21
  with gr.Row():
22
  gr.Markdown("Describe types of profiles you want in your focus group")
 
23
  focusgroupdescription = gr.Textbox(label="Describe your focus group desired characteristics", info= "For example: women in their 30s, teenagers, mixed ethnicity from Vietnam, ...", lines=5)
 
24
  generategroup = gr.Button("Generate my focus group")
25
  with gr.Row():
26
  gr.Markdown("Participants")
 
27
  expert1 = gr.Textbox(label="Participant 1", lines=5)
28
  expert2 = gr.Textbox(label="Participant 2", lines=5)
29
  expert3 = gr.Textbox(label="Participant 3", lines=5)
30
  expert4 = gr.Textbox(label="Participant 4", lines=5)
31
  expert5 = gr.Textbox(label="Participant 5", lines=5)
 
32
  expert6 = gr.Textbox(label="Participant 6", lines=5)
33
  expert7 = gr.Textbox(label="Participant 7", lines=5)
34
  expert8 = gr.Textbox(label="Participant 8", lines=5)
 
11
  with gr.Tab("Enquiry Description"):
12
  with gr.Row():
13
  gr.Markdown("Describe your project or study")
14
+ with gr.Row():
15
  title = gr.Textbox(label='Topic of our study', lines = 5)
16
  with gr.Row():
17
  gr.Markdown("List all your questions")
18
+ with gr.Row():
19
  question1 = gr.Textbox(label="Question 1", lines=2)
20
+ with gr.Row():
21
  question2 = gr.Textbox(label="Question 2", lines=2)
22
+ with gr.Row():
23
  question3 = gr.Textbox(label="Question 3", lines=2)
24
  with gr.Tab("Focus Group Selection"):
25
  with gr.Row():
26
  gr.Markdown("Describe types of profiles you want in your focus group")
27
+ with gr.Row():
28
  focusgroupdescription = gr.Textbox(label="Describe your focus group desired characteristics", info= "For example: women in their 30s, teenagers, mixed ethnicity from Vietnam, ...", lines=5)
29
+ with gr.Row():
30
  generategroup = gr.Button("Generate my focus group")
31
  with gr.Row():
32
  gr.Markdown("Participants")
33
+ with gr.Row():
34
  expert1 = gr.Textbox(label="Participant 1", lines=5)
35
  expert2 = gr.Textbox(label="Participant 2", lines=5)
36
  expert3 = gr.Textbox(label="Participant 3", lines=5)
37
  expert4 = gr.Textbox(label="Participant 4", lines=5)
38
  expert5 = gr.Textbox(label="Participant 5", lines=5)
39
+ with gr.Row():
40
  expert6 = gr.Textbox(label="Participant 6", lines=5)
41
  expert7 = gr.Textbox(label="Participant 7", lines=5)
42
  expert8 = gr.Textbox(label="Participant 8", lines=5)