pwilczewski commited on
Commit
3f093b9
·
1 Parent(s): 201dc37
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -71,7 +71,7 @@ def chain_node(state: AgentState, chain, name):
71
  # cell 3
72
  OPENAI_API_KEY = os.getenv("OPENAI_API_KEY")
73
  llm = ChatOpenAI(model="gpt-4o-mini-2024-07-18", temperature=0, api_key=OPENAI_API_KEY)
74
- llm_big = ChatOpenAI(model="gpt-4o-mini-2024-07-18", temperature=0, api_key=OPENAI_API_KEY)
75
 
76
  eda_task = """Using the data in the dataframe `df` and the package statsmodels, first run an augmented dickey fuller test on the data.
77
  Using matplotlib plot the time series, display it and save it to 'plot.png'.
 
71
  # cell 3
72
  OPENAI_API_KEY = os.getenv("OPENAI_API_KEY")
73
  llm = ChatOpenAI(model="gpt-4o-mini-2024-07-18", temperature=0, api_key=OPENAI_API_KEY)
74
+ llm_big = ChatOpenAI(model="gpt-4o", temperature=0, api_key=OPENAI_API_KEY)
75
 
76
  eda_task = """Using the data in the dataframe `df` and the package statsmodels, first run an augmented dickey fuller test on the data.
77
  Using matplotlib plot the time series, display it and save it to 'plot.png'.