Spaces:
Runtime error
Runtime error
Add `num_concurrent_runs` parameter to `gaia_solving_agent`
Browse files
src/gaia_solving_agent/agent.py
CHANGED
|
@@ -150,4 +150,7 @@ gaia_solving_agent = FunctionAgent(
|
|
| 150 |
You are a helpful assistant that uses tools to browse additional information and resources on the web to answer questions.
|
| 151 |
""",
|
| 152 |
name="gaia_solving_agent",
|
| 153 |
-
description="Agent that browse additional information and resources on the web."
|
|
|
|
|
|
|
|
|
|
|
|
| 150 |
You are a helpful assistant that uses tools to browse additional information and resources on the web to answer questions.
|
| 151 |
""",
|
| 152 |
name="gaia_solving_agent",
|
| 153 |
+
description="Agent that browse additional information and resources on the web.",
|
| 154 |
+
num_concurrent_runs=1,
|
| 155 |
+
)
|
| 156 |
+
|