Update cool_agent.py
Browse files- cool_agent.py +3 -2
cool_agent.py
CHANGED
|
@@ -47,6 +47,7 @@ AUTHORIZED_IMPORTS = [
|
|
| 47 |
"datetime",
|
| 48 |
"fractions",
|
| 49 |
"csv",
|
|
|
|
| 50 |
]
|
| 51 |
|
| 52 |
# load_dotenv(override=True)
|
|
@@ -127,8 +128,8 @@ def create_agent(model_id="gpt-4o-mini"):
|
|
| 127 |
manager_agent = CodeAgent(
|
| 128 |
model=model,
|
| 129 |
tools=[visualizer, TextInspectorTool(model, text_limit)],
|
| 130 |
-
max_steps=12,
|
| 131 |
-
verbosity_level=2,
|
| 132 |
additional_authorized_imports=AUTHORIZED_IMPORTS,
|
| 133 |
planning_interval=4,
|
| 134 |
managed_agents=[search_agent],
|
|
|
|
| 47 |
"datetime",
|
| 48 |
"fractions",
|
| 49 |
"csv",
|
| 50 |
+
"wiki",
|
| 51 |
]
|
| 52 |
|
| 53 |
# load_dotenv(override=True)
|
|
|
|
| 128 |
manager_agent = CodeAgent(
|
| 129 |
model=model,
|
| 130 |
tools=[visualizer, TextInspectorTool(model, text_limit)],
|
| 131 |
+
max_steps=2, #12,
|
| 132 |
+
verbosity_level=1, #2,
|
| 133 |
additional_authorized_imports=AUTHORIZED_IMPORTS,
|
| 134 |
planning_interval=4,
|
| 135 |
managed_agents=[search_agent],
|