ravimalviya commited on
Commit
9e9f526
·
verified ·
1 Parent(s): d4a6655

Upload app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -397,7 +397,7 @@ from langgraph.graph import END, StateGraph, START
397
 
398
  def create_workflow() -> StateGraph:
399
  """Creates the updated workflow for the AI nutrition agent."""
400
- workflow = StateGraph(_____ ) # Complete the code to define the initial state of the agent
401
 
402
  # Add processing nodes
403
  workflow.add_node("expand_query", expand_query ) # Step 1: Expand user query. Complete with the function to expand the query
 
397
 
398
  def create_workflow() -> StateGraph:
399
  """Creates the updated workflow for the AI nutrition agent."""
400
+ workflow = StateGraph(AgentState) # Complete the code to define the initial state of the agent
401
 
402
  # Add processing nodes
403
  workflow.add_node("expand_query", expand_query ) # Step 1: Expand user query. Complete with the function to expand the query