Spaces:
Runtime error
Runtime error
Update
Browse files
app.py
CHANGED
@@ -92,11 +92,9 @@ with gr.Blocks(css=css) as demo:
|
|
92 |
all_components = []
|
93 |
|
94 |
with gr.Column(elem_id="col-container"):
|
95 |
-
gr.Markdown("""# ๐
|
96 |
Prompting multiple AI agents to play games in a language-driven environment.
|
97 |
-
**[Project Homepage](https://github.com/chatarena/chatarena)**
|
98 |
-
### Due to the high volume of requests, our OpenAI API token exceeds the billing limit. We are approaching OpenAI to get researcher access, and are working on deploying a LLama model as an alternative (if you are interested, please get in touch). For now, we encourage our users to run the demo locally following [this instruction](https://github.com/chatarena/chatarena#launch-the-demo-locally). Thank you!
|
99 |
-
""", elem_id="header")
|
100 |
|
101 |
with gr.Row():
|
102 |
env_selector = gr.Dropdown(choices=list(ENV_REGISTRY.keys()), value=DEFAULT_ENV, interactive=True,
|
|
|
92 |
all_components = []
|
93 |
|
94 |
with gr.Column(elem_id="col-container"):
|
95 |
+
gr.Markdown("""# ๐ ChatArena๏ธ<br>
|
96 |
Prompting multiple AI agents to play games in a language-driven environment.
|
97 |
+
**[Project Homepage](https://github.com/chatarena/chatarena)**""", elem_id="header")
|
|
|
|
|
98 |
|
99 |
with gr.Row():
|
100 |
env_selector = gr.Dropdown(choices=list(ENV_REGISTRY.keys()), value=DEFAULT_ENV, interactive=True,
|