Daniel Amendoeira commited on
Commit
6df71f5
·
verified ·
1 Parent(s): ce69239

Update agent.py

Browse files
Files changed (1) hide show
  1. agent.py +1 -1
agent.py CHANGED
@@ -40,7 +40,7 @@ search_tool = BraveSearch.from_api_key(
40
  )
41
 
42
  community_tools = [search_tool, python_tool]
43
- custom_tools = [datetime_tools, transcribe_audio]
44
 
45
  tools = community_tools + custom_tools
46
  llm_with_tools = llm.bind_tools(tools)
 
40
  )
41
 
42
  community_tools = [search_tool, python_tool]
43
+ custom_tools = datetime_tools + [transcribe_audio]
44
 
45
  tools = community_tools + custom_tools
46
  llm_with_tools = llm.bind_tools(tools)