set default
Browse files
app.py
CHANGED
@@ -79,14 +79,17 @@ demo = gr.Interface(
|
|
79 |
"text",
|
80 |
gr.Radio(
|
81 |
functionality_shared,
|
|
|
82 |
info = "Shared services",
|
83 |
),
|
84 |
gr.Radio(
|
85 |
game_list,
|
|
|
86 |
info = "Which game you want the AI to support?",
|
87 |
),
|
88 |
gr.Radio(
|
89 |
functionality_list,
|
|
|
90 |
# label = "What do you want to do?",
|
91 |
info = "What functionality?",
|
92 |
),
|
|
|
79 |
"text",
|
80 |
gr.Radio(
|
81 |
functionality_shared,
|
82 |
+
value=functionality_shared[0],
|
83 |
info = "Shared services",
|
84 |
),
|
85 |
gr.Radio(
|
86 |
game_list,
|
87 |
+
value=game_list[1],
|
88 |
info = "Which game you want the AI to support?",
|
89 |
),
|
90 |
gr.Radio(
|
91 |
functionality_list,
|
92 |
+
value=functionality_list[0],
|
93 |
# label = "What do you want to do?",
|
94 |
info = "What functionality?",
|
95 |
),
|