Update app.py
Browse files
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 =
|
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"])
|