naman1102 commited on
Commit
a979fc9
·
1 Parent(s): 9fb6d05

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -20,8 +20,8 @@ from state import AgentState
20
  # --- Constants ---
21
  DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
22
 
23
- from tools import web_search, parse_excel, ocr_image
24
- tool_node = ToolNode([ocr_image, parse_excel, web_search])
25
 
26
  llm = ChatOpenAI(model_name="gpt-4.1-mini", temperature=0.0)
27
 
 
20
  # --- Constants ---
21
  DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
22
 
23
+ from tools import ocr_image_tool, parse_excel_tool, web_search_tool
24
+ tool_node = ToolNode([ocr_image_tool, parse_excel_tool, web_search_tool])
25
 
26
  llm = ChatOpenAI(model_name="gpt-4.1-mini", temperature=0.0)
27