Daniel Amendoeira commited on
Commit
a43d3c2
·
verified ·
1 Parent(s): c5c30a4

Update agent.py

Browse files
Files changed (1) hide show
  1. agent.py +1 -2
agent.py CHANGED
@@ -7,8 +7,7 @@ from langgraph.graph import MessagesState
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 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)
 
7
  from langgraph.graph import StateGraph, START, END
8
  from typing import Literal
9
 
10
+ from langchain_community.tools import BraveSearch, Calculator # web search and basic math
 
11
  from langchain.tools.python.tool import PythonAstREPLTool # for logic/math problems
12
 
13
  from tools import (datetime_tools, transcribe_audio_tool)