Spaces:
Sleeping
Sleeping
Add first tool
Browse files
app.py
CHANGED
|
@@ -55,7 +55,10 @@ with open("prompts.yaml", "r") as stream:
|
|
| 55 |
|
| 56 |
agent = CodeAgent(
|
| 57 |
model=model,
|
| 58 |
-
tools=[
|
|
|
|
|
|
|
|
|
|
| 59 |
max_steps=6,
|
| 60 |
verbosity_level=1,
|
| 61 |
grammar=None,
|
|
|
|
| 55 |
|
| 56 |
agent = CodeAgent(
|
| 57 |
model=model,
|
| 58 |
+
tools=[
|
| 59 |
+
my_cutom_tool,
|
| 60 |
+
final_answer,
|
| 61 |
+
],
|
| 62 |
max_steps=6,
|
| 63 |
verbosity_level=1,
|
| 64 |
grammar=None,
|