jcho02 commited on
Commit
e3d1482
·
1 Parent(s): 9955b8a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -26,7 +26,7 @@ def feedback_response(feedback, comments, new_input_query):
26
  worksheet = sh.worksheet(worksheet_name)
27
 
28
  # Create a DataFrame from the response and additional comments
29
- df = pd.DataFrame({'Response': [response], 'Additional Comments': [comments], 'New Input Query': [new_input_query]})
30
 
31
  # Append the data to the worksheet
32
  worksheet.append_rows(df.values.tolist())
 
26
  worksheet = sh.worksheet(worksheet_name)
27
 
28
  # Create a DataFrame from the response and additional comments
29
+ df = pd.DataFrame({'New Input Query': [new_input_query],'Response': [response], 'Additional Comments': [comments]})
30
 
31
  # Append the data to the worksheet
32
  worksheet.append_rows(df.values.tolist())