fschwartzer commited on
Commit
9adca6f
β€’
1 Parent(s): 048e2e2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -47,7 +47,7 @@ if user_question:
47
  st.markdown(f"**πŸ‘€ {user_question}**")
48
 
49
  # Generate the response
50
- bot_response = response(user_question, table_data)["Resposta"]
51
 
52
  # Add robot emoji when generating response and align to the right
53
  st.session_state['history'].append(('πŸ€–', bot_response))
 
47
  st.markdown(f"**πŸ‘€ {user_question}**")
48
 
49
  # Generate the response
50
+ bot_response = response(user_question, df)["Resposta"]
51
 
52
  # Add robot emoji when generating response and align to the right
53
  st.session_state['history'].append(('πŸ€–', bot_response))