Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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
|
24 |
-
tool_node = ToolNode([
|
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 |
|