rodrisouza commited on
Commit
f6d00a0
·
verified ·
1 Parent(s): 857690b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -8
app.py CHANGED
@@ -13,7 +13,7 @@ torch.jit.script = lambda f: f
13
  # Initialize Google Sheets client
14
  client = init_google_sheets_client()
15
  sheet = client.open(google_sheets_name)
16
- stories_sheet = sheet.get_worksheet(1) # Assuming stories are in the second sheet (index 1)
17
 
18
  # Load stories from Google Sheets
19
  def load_stories():
@@ -102,7 +102,6 @@ def send_selected_story(title, model_name, system_prompt):
102
  data = [] # Reset data for new story
103
  tokenizer, model = load_model(model_name)
104
  selected_story = title
105
- story_text = ""
106
  for story in stories:
107
  if story["title"] == title:
108
  system_prompt = f"""
@@ -112,7 +111,6 @@ Here is the story:
112
  {story['story']}
113
  ---
114
  """
115
- story_text = story["story"]
116
  combined_message = system_prompt.strip()
117
  if combined_message:
118
  chat_history = [] # Reset chat history
@@ -122,7 +120,7 @@ Here is the story:
122
  question_prompt = "Please ask a simple question about the story to encourage interaction."
123
  _, formatted_history, chat_history = interact(question_prompt, chat_history)
124
 
125
- return formatted_history, chat_history, gr.update(value=story_text), gr.update(value=[]) # Reset the data table
126
  else:
127
  print("Combined message is empty.")
128
  else:
@@ -160,8 +158,8 @@ def save_comment_score(chat_responses, score, comment, story_name, user_name):
160
  comment
161
  ])
162
 
163
- # Select the sheet corresponding to the user name
164
- user_sheet = client.open(google_sheets_name).worksheet(user_name) # Assuming each user has a separate sheet named after them
165
  user_sheet.append_row([timestamp_str, user_name, model_name, story_name, last_user_message, last_assistant_message, score, comment])
166
 
167
  df = pd.DataFrame(data, columns=["Timestamp", "User Name", "Model Name", "Story Name", "User Input", "Chat Response", "Score", "Comment"])
@@ -183,7 +181,6 @@ with gr.Blocks() as demo:
183
  system_prompt_input = gr.Textbox(lines=5, value=default_system_prompt, label="System Prompt")
184
 
185
  send_story_button = gr.Button("Send Story")
186
-
187
  selected_story_output = gr.Textbox(label="Selected Story", interactive=False)
188
 
189
  with gr.Row():
@@ -204,7 +201,7 @@ with gr.Blocks() as demo:
204
 
205
  chat_history_json = gr.JSON(value=[], visible=False)
206
 
207
- send_story_button.click(fn=send_selected_story, inputs=[story_dropdown, model_dropdown, system_prompt_input], outputs=[chatbot_output, chat_history_json, selected_story_output, data_table])
208
  send_message_button.click(fn=interact, inputs=[chatbot_input, chat_history_json], outputs=[chatbot_input, chatbot_output, chat_history_json])
209
  save_button.click(fn=save_comment_score, inputs=[chatbot_output, score_input, comment_input, story_dropdown, user_dropdown], outputs=[data_table, comment_input])
210
 
 
13
  # Initialize Google Sheets client
14
  client = init_google_sheets_client()
15
  sheet = client.open(google_sheets_name)
16
+ stories_sheet = sheet.worksheet("Stories") # Fetch stories from the "Stories" sheet
17
 
18
  # Load stories from Google Sheets
19
  def load_stories():
 
102
  data = [] # Reset data for new story
103
  tokenizer, model = load_model(model_name)
104
  selected_story = title
 
105
  for story in stories:
106
  if story["title"] == title:
107
  system_prompt = f"""
 
111
  {story['story']}
112
  ---
113
  """
 
114
  combined_message = system_prompt.strip()
115
  if combined_message:
116
  chat_history = [] # Reset chat history
 
120
  question_prompt = "Please ask a simple question about the story to encourage interaction."
121
  _, formatted_history, chat_history = interact(question_prompt, chat_history)
122
 
123
+ return formatted_history, chat_history, gr.update(value=[]), story['story'] # Reset the data table and return the story content
124
  else:
125
  print("Combined message is empty.")
126
  else:
 
158
  comment
159
  ])
160
 
161
+ # Append data to the user-specific sheet
162
+ user_sheet = client.open(google_sheets_name).worksheet(user_name) # Open the sheet with the user's name
163
  user_sheet.append_row([timestamp_str, user_name, model_name, story_name, last_user_message, last_assistant_message, score, comment])
164
 
165
  df = pd.DataFrame(data, columns=["Timestamp", "User Name", "Model Name", "Story Name", "User Input", "Chat Response", "Score", "Comment"])
 
181
  system_prompt_input = gr.Textbox(lines=5, value=default_system_prompt, label="System Prompt")
182
 
183
  send_story_button = gr.Button("Send Story")
 
184
  selected_story_output = gr.Textbox(label="Selected Story", interactive=False)
185
 
186
  with gr.Row():
 
201
 
202
  chat_history_json = gr.JSON(value=[], visible=False)
203
 
204
+ send_story_button.click(fn=send_selected_story, inputs=[story_dropdown, model_dropdown, system_prompt_input], outputs=[chatbot_output, chat_history_json, data_table, selected_story_output])
205
  send_message_button.click(fn=interact, inputs=[chatbot_input, chat_history_json], outputs=[chatbot_input, chatbot_output, chat_history_json])
206
  save_button.click(fn=save_comment_score, inputs=[chatbot_output, score_input, comment_input, story_dropdown, user_dropdown], outputs=[data_table, comment_input])
207