pwilczewski commited on
Commit
7d3e0da
·
1 Parent(s): 5b69170

adding subdir for testing

Browse files
Files changed (2) hide show
  1. app.py +3 -3
  2. plots/placeholder.txt +0 -0
app.py CHANGED
@@ -73,9 +73,9 @@ llm = ChatOpenAI(model="gpt-4o-mini-2024-07-18", temperature=0, api_key=OPENAI_A
73
  llm_big = ChatOpenAI(model="gpt-4o", temperature=0, api_key=OPENAI_API_KEY)
74
 
75
  eda_task = """Using the data in the dataframe `df` and the package statsmodels, first run an augmented dickey fuller test on the data.
76
- Using matplotlib plot the time series, display it and save it to 'plot.png'.
77
- Next use the statsmodel package to generate an ACF plot with zero flag set to False, display it and save it to 'acf.png'.
78
- Then use the statsmodel package to generate a PACF plot with zero flag set to False, display it and save it to 'pacf.png'"""
79
  eda_agent = create_agent(llm, [python_repl_tool], task=eda_task,)
80
  eda_node = functools.partial(agent_node, agent=eda_agent, name="EDA")
81
 
 
73
  llm_big = ChatOpenAI(model="gpt-4o", temperature=0, api_key=OPENAI_API_KEY)
74
 
75
  eda_task = """Using the data in the dataframe `df` and the package statsmodels, first run an augmented dickey fuller test on the data.
76
+ Using matplotlib plot the time series, display it and save it to 'plots/plot.png'.
77
+ Next use the statsmodel package to generate an ACF plot with zero flag set to False, display it and save it to 'plots/acf.png'.
78
+ Then use the statsmodel package to generate a PACF plot with zero flag set to False, display it and save it to 'plots/pacf.png'"""
79
  eda_agent = create_agent(llm, [python_repl_tool], task=eda_task,)
80
  eda_node = functools.partial(agent_node, agent=eda_agent, name="EDA")
81
 
plots/placeholder.txt ADDED
File without changes