steveagi commited on
Commit
6a7682d
·
1 Parent(s): de4bef3

set default

Browse files
Files changed (1) hide show
  1. app.py +3 -0
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
  ),