Update app.py
Browse files
app.py
CHANGED
@@ -5,7 +5,7 @@ from multi_agent import run_multi_agent
|
|
5 |
|
6 |
lock = threading.Lock()
|
7 |
|
8 |
-
LLM_WHITE = "gpt-4.
|
9 |
LLM_BLACK = "gpt-4.1"
|
10 |
|
11 |
def invoke(openai_api_key, num_moves = 10):
|
@@ -37,7 +37,7 @@ with gr.Blocks() as assistant:
|
|
37 |
components=[openai_api_key, num_moves]
|
38 |
)
|
39 |
submit_btn = gr.Button("Submit", variant="primary")
|
40 |
-
with gr.Column(scale=
|
41 |
game = gr.Markdown(label = "Game", value=os.environ["OUTPUT"], line_breaks=True, sanitize_html=False)
|
42 |
|
43 |
clear_btn.click(
|
|
|
5 |
|
6 |
lock = threading.Lock()
|
7 |
|
8 |
+
LLM_WHITE = "gpt-4.5-preview"
|
9 |
LLM_BLACK = "gpt-4.1"
|
10 |
|
11 |
def invoke(openai_api_key, num_moves = 10):
|
|
|
37 |
components=[openai_api_key, num_moves]
|
38 |
)
|
39 |
submit_btn = gr.Button("Submit", variant="primary")
|
40 |
+
with gr.Column(scale=2):
|
41 |
game = gr.Markdown(label = "Game", value=os.environ["OUTPUT"], line_breaks=True, sanitize_html=False)
|
42 |
|
43 |
clear_btn.click(
|