pwilczewski commited on
Commit
8d12897
·
1 Parent(s): 3f5095e

removing more nodes

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -132,9 +132,9 @@ from langgraph.graph import END, StateGraph, START
132
  # add a chain to the node to analyze the ACF plot?
133
  workflow = StateGraph(AgentState)
134
  workflow.add_node("EDA", eda_node)
135
- workflow.add_node("PlotAnalysis", plot_node)
136
- workflow.add_node("Difference", diff_node)
137
- workflow.add_node("ARIMA", arima_node)
138
 
139
  # conditional_edge to refit and the loop refit with resid?
140
  workflow.add_edge(START, "EDA")
 
132
  # add a chain to the node to analyze the ACF plot?
133
  workflow = StateGraph(AgentState)
134
  workflow.add_node("EDA", eda_node)
135
+ # workflow.add_node("PlotAnalysis", plot_node)
136
+ # workflow.add_node("Difference", diff_node)
137
+ # workflow.add_node("ARIMA", arima_node)
138
 
139
  # conditional_edge to refit and the loop refit with resid?
140
  workflow.add_edge(START, "EDA")