naman1102 commited on
Commit
c76a6ae
Β·
1 Parent(s): 36b6dba

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -39,7 +39,7 @@ llm = ChatOpenAI(model_name="gpt-4.1-mini")
39
  tool_node = ToolNode([ocr_image, parse_excel, web_search])
40
 
41
  # 5) Build the StateGraph
42
- graph = StateGraph[AgentState]()
43
 
44
  # ────────────────────────
45
  # Edge 1: START β†’ LLM
 
39
  tool_node = ToolNode([ocr_image, parse_excel, web_search])
40
 
41
  # 5) Build the StateGraph
42
+ graph = StateGraph(AgentState)
43
 
44
  # ────────────────────────
45
  # Edge 1: START β†’ LLM