naman1102 commited on
Commit
eef66ab
·
1 Parent(s): ee44bc0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -52,10 +52,8 @@ class BasicAgent:
52
 
53
  def _create_workflow(self) -> Graph:
54
  """Create the agent workflow using LangGraph."""
55
- # Create the workflow with proper state schema
56
  workflow = StateGraph(
57
- input_type=AgentState,
58
- output_type=AgentState,
59
  state_schema=AgentState
60
  )
61
 
 
52
 
53
  def _create_workflow(self) -> Graph:
54
  """Create the agent workflow using LangGraph."""
55
+ # Create the workflow with state schema
56
  workflow = StateGraph(
 
 
57
  state_schema=AgentState
58
  )
59