File size: 262 Bytes
8535740
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from tools.my_new_tool import new_tool

agent = CodeAgent(
    model=model,
    tools=[final_answer, new_tool, visit_webpage, web_search],  # include all desired tools here
    max_steps=6,
    verbosity_level=1,
    prompt_templates=prompt_templates
)