rodrisouza commited on
Commit
4ef26a4
·
verified ·
1 Parent(s): 5506717

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -25,7 +25,7 @@ def load_stories():
25
  # Load system prompts from Google Sheets
26
  def load_system_prompts():
27
  system_prompts_data = system_prompts_sheet.get_all_values()
28
- system_prompts = [prompt[0] for prompt in system_prompts_data if prompt[0] != "System Prompt"] # Skip header row
29
  return system_prompts
30
 
31
  # Load available stories and system prompts
@@ -168,8 +168,12 @@ def save_comment_score(chat_responses, score, comment, story_name, user_name, sy
168
  ])
169
 
170
  # Append data to Google Sheets
171
- sheet = client.open(google_sheets_name).sheet1 # Assuming results are saved in sheet1
172
- sheet.append_row([timestamp_str, user_name, model_name, system_prompt, story_name, last_user_message, last_assistant_message, score, comment])
 
 
 
 
173
 
174
  df = pd.DataFrame(data, columns=["Timestamp", "User Name", "Model Name", "System Prompt", "Story Name", "User Input", "Chat Response", "Score", "Comment"])
175
  return df[["User Input", "Chat Response", "Score", "Comment"]], gr.update(value="") # Show only the required columns and clear the comment input box
 
25
  # Load system prompts from Google Sheets
26
  def load_system_prompts():
27
  system_prompts_data = system_prompts_sheet.get_all_values()
28
+ system_prompts = [prompt[0] for prompt in system_prompts_data[1:]] # Skip header row
29
  return system_prompts
30
 
31
  # Load available stories and system prompts
 
168
  ])
169
 
170
  # Append data to Google Sheets
171
+ try:
172
+ user_sheet = client.open(google_sheets_name).worksheet(user_name)
173
+ except gspread.exceptions.WorksheetNotFound:
174
+ user_sheet = client.open(google_sheets_name).add_worksheet(title=user_name, rows="100", cols="20")
175
+
176
+ user_sheet.append_row([timestamp_str, user_name, model_name, system_prompt, story_name, last_user_message, last_assistant_message, score, comment])
177
 
178
  df = pd.DataFrame(data, columns=["Timestamp", "User Name", "Model Name", "System Prompt", "Story Name", "User Input", "Chat Response", "Score", "Comment"])
179
  return df[["User Input", "Chat Response", "Score", "Comment"]], gr.update(value="") # Show only the required columns and clear the comment input box