Spaces:
Sleeping
Sleeping
Add get_cipher_encrypt to codeagent tools
Browse filesAdded get_cipher_encrypt to the list of tools for codeagent
app.py
CHANGED
@@ -64,7 +64,7 @@ with open("prompts.yaml", 'r') as stream:
|
|
64 |
|
65 |
agent = CodeAgent(
|
66 |
model=model,
|
67 |
-
tools=[final_answer], ## add your tools here (don't remove final answer)
|
68 |
max_steps=6,
|
69 |
verbosity_level=1,
|
70 |
grammar=None,
|
|
|
64 |
|
65 |
agent = CodeAgent(
|
66 |
model=model,
|
67 |
+
tools=[final_answer,get_cipher_encrypt], ## add your tools here (don't remove final answer)
|
68 |
max_steps=6,
|
69 |
verbosity_level=1,
|
70 |
grammar=None,
|