bstraehle commited on
Commit
4a45fcd
·
verified ·
1 Parent(s): f7c373e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -22,7 +22,7 @@ gr.close_all()
22
 
23
  demo = gr.Interface(fn = invoke,
24
  inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
25
- gr.Number(label = "Number of Moves", value = 10, minimum = 1, maximum = 150)],
26
  outputs = [gr.Markdown(label = "Game", value=os.environ["OUTPUT"], line_breaks=True, sanitize_html=False)],
27
  title = "Multi-Agent AI: Chess",
28
  description = os.environ["DESCRIPTION"])
 
22
 
23
  demo = gr.Interface(fn = invoke,
24
  inputs = [gr.Textbox(label = "OpenAI API Key", type = "password", lines = 1),
25
+ gr.Number(label = "Number of Moves", value = 10, minimum = 1, maximum = 50)],
26
  outputs = [gr.Markdown(label = "Game", value=os.environ["OUTPUT"], line_breaks=True, sanitize_html=False)],
27
  title = "Multi-Agent AI: Chess",
28
  description = os.environ["DESCRIPTION"])