Spaces:
Runtime error
Runtime error
update
Browse files
app.py
CHANGED
@@ -30,6 +30,7 @@ class CodeUI(WebUI):
|
|
30 |
with gr.Blocks(css=gc.CSS) as demo:
|
31 |
gr.Markdown("""# Agents""")
|
32 |
gr.Markdown("""**Agents** is an open-source library/framework for building autonomous language agents.if you want to know more about **Agents**, please check our<a href="https://arxiv.org/pdf/2309.07870.pdf">π Paper</a> and<a href="http://www.aiwaves-agents.com/">π¦ Github</a>. Here is a demo of **Agents**.""")
|
|
|
33 |
with gr.Row():
|
34 |
with gr.Column():
|
35 |
self.text_api = gr.Textbox(
|
@@ -38,7 +39,7 @@ class CodeUI(WebUI):
|
|
38 |
label="Please input valid openai key for gpt-3.5-turbo-16k."
|
39 |
)
|
40 |
self.radio_mode = gr.Radio(
|
41 |
-
[Client.SINGLE_MODE],
|
42 |
value=Client.AUTO_MODE,
|
43 |
interactive=True,
|
44 |
label = Client.MODE_LABEL,
|
|
|
30 |
with gr.Blocks(css=gc.CSS) as demo:
|
31 |
gr.Markdown("""# Agents""")
|
32 |
gr.Markdown("""**Agents** is an open-source library/framework for building autonomous language agents.if you want to know more about **Agents**, please check our<a href="https://arxiv.org/pdf/2309.07870.pdf">π Paper</a> and<a href="http://www.aiwaves-agents.com/">π¦ Github</a>. Here is a demo of **Agents**.""")
|
33 |
+
gr.Markdown("""# If an error occurs or the queue is too long, please create your own demo by clicking <font color=red>Duplicate This Space</font> in the upper right corner.""")
|
34 |
with gr.Row():
|
35 |
with gr.Column():
|
36 |
self.text_api = gr.Textbox(
|
|
|
39 |
label="Please input valid openai key for gpt-3.5-turbo-16k."
|
40 |
)
|
41 |
self.radio_mode = gr.Radio(
|
42 |
+
[Client.AUTO_MODE, Client.SINGLE_MODE],
|
43 |
value=Client.AUTO_MODE,
|
44 |
interactive=True,
|
45 |
label = Client.MODE_LABEL,
|