Daniel Amendoeira commited on
Commit
4142e2f
·
verified ·
1 Parent(s): 4a87e37

Update agent.py

Browse files
Files changed (1) hide show
  1. agent.py +1 -1
agent.py CHANGED
@@ -8,7 +8,7 @@ from langgraph.graph import StateGraph, START, END
8
  from typing import Literal
9
 
10
  from langchain_community.tools import BraveSearch # web search
11
- from langchain.tools.python.tool import PythonREPLTool # for logic/math problems
12
 
13
  from tools import (datetime_tools, transcribe_audio_tool)
14
  from prompt import system_prompt
 
8
  from typing import Literal
9
 
10
  from langchain_community.tools import BraveSearch # web search
11
+ from langchain_experimental.tools.python.tool import PythonAstREPLTool # for logic/math problems
12
 
13
  from tools import (datetime_tools, transcribe_audio_tool)
14
  from prompt import system_prompt