Daniel Amendoeira commited on
Commit
0aa3b8d
·
verified ·
1 Parent(s): 6fb8e24

Update agent.py

Browse files
Files changed (1) hide show
  1. agent.py +2 -2
agent.py CHANGED
@@ -11,8 +11,8 @@ from langchain_community.tools import BraveSearch # web search
11
  from langchain.tools import Calculator # for basic math
12
  from langchain.tools.python.tool import PythonAstREPLTool # for logic/math problems
13
 
14
- from .custom tools import (datetime_tools, transcribe_audio_tool)
15
- from .prompt import system_prompt
16
 
17
  # gpt-4.1-nano (cheaper for debugging) with temperature 0 for less randomness
18
  # for benchmarking use 04-mini (better reasoning) or gpt-4.1-mini
 
11
  from langchain.tools import Calculator # for basic math
12
  from langchain.tools.python.tool import PythonAstREPLTool # for logic/math problems
13
 
14
+ from tools import (datetime_tools, transcribe_audio_tool)
15
+ from prompt import system_prompt
16
 
17
  # gpt-4.1-nano (cheaper for debugging) with temperature 0 for less randomness
18
  # for benchmarking use 04-mini (better reasoning) or gpt-4.1-mini