venkatareddykonasani commited on
Commit
b8c9100
1 Parent(s): 448f9bf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -17,8 +17,7 @@ def main():
17
  agent=create_csv_agent(OpenAI(temperature=0),
18
  input_csv,
19
  verbose=True,
20
- agent_type=AgentType.ZERO_SHOT_REACT_DESCRIPTION,
21
- tool=python_repl)
22
  result=agent.run(user_question)
23
  st.write(result)
24
 
 
17
  agent=create_csv_agent(OpenAI(temperature=0),
18
  input_csv,
19
  verbose=True,
20
+ agent_type=AgentType.ZERO_SHOT_REACT_DESCRIPTION)
 
21
  result=agent.run(user_question)
22
  st.write(result)
23