Spaces:
Configuration error
Configuration error
Update app.py
Browse files
app.py
CHANGED
@@ -13,7 +13,8 @@ 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.worksheet("Stories")
|
|
|
17 |
|
18 |
# Load stories from Google Sheets
|
19 |
def load_stories():
|
@@ -21,8 +22,15 @@ def load_stories():
|
|
21 |
stories = [{"title": story[0], "story": story[1]} for story in stories_data if story[0] != "Title"] # Skip header row
|
22 |
return stories
|
23 |
|
24 |
-
# Load
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
stories = load_stories()
|
|
|
26 |
|
27 |
# Initialize the selected model
|
28 |
selected_model = default_model_name
|
@@ -120,7 +128,7 @@ Here is the story:
|
|
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=
|
124 |
else:
|
125 |
print("Combined message is empty.")
|
126 |
else:
|
@@ -158,9 +166,9 @@ def save_comment_score(chat_responses, score, comment, story_name, user_name):
|
|
158 |
comment
|
159 |
])
|
160 |
|
161 |
-
# Append data to
|
162 |
-
|
163 |
-
|
164 |
|
165 |
df = pd.DataFrame(data, columns=["Timestamp", "User Name", "Model Name", "Story Name", "User Input", "Chat Response", "Score", "Comment"])
|
166 |
return df, gr.update(value="") # Clear the comment input box
|
@@ -173,15 +181,10 @@ with gr.Blocks() as demo:
|
|
173 |
user_dropdown = gr.Dropdown(choices=user_names, label="Select User Name")
|
174 |
initial_story = stories[0]["title"] if stories else None
|
175 |
story_dropdown = gr.Dropdown(choices=[story["title"] for story in stories], label="Select Story", value=initial_story)
|
176 |
-
|
177 |
-
default_system_prompt = ("You are friendly chatbot and you will interact with a child who speaks Spanish and is learning English as a foreign language. "
|
178 |
-
"Everything you write should be in English. I will provide you with a short children's story in English. "
|
179 |
-
"After reading the story, please ask the child a series of five simple questions about it, one at a time, to encourage ongoing interaction. "
|
180 |
-
"Wait for the child's response to each question before asking the next one.")
|
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 |
-
|
185 |
|
186 |
with gr.Row():
|
187 |
with gr.Column(scale=1):
|
@@ -201,7 +204,7 @@ with gr.Blocks() as demo:
|
|
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,
|
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 |
|
|
|
13 |
# Initialize Google Sheets client
|
14 |
client = init_google_sheets_client()
|
15 |
sheet = client.open(google_sheets_name)
|
16 |
+
stories_sheet = sheet.worksheet("Stories")
|
17 |
+
prompts_sheet = sheet.worksheet("System Prompts")
|
18 |
|
19 |
# Load stories from Google Sheets
|
20 |
def load_stories():
|
|
|
22 |
stories = [{"title": story[0], "story": story[1]} for story in stories_data if story[0] != "Title"] # Skip header row
|
23 |
return stories
|
24 |
|
25 |
+
# Load system prompts from Google Sheets
|
26 |
+
def load_prompts():
|
27 |
+
prompts_data = prompts_sheet.get_all_values()
|
28 |
+
prompts = [prompt[0] for prompt in prompts_data if prompt[0] != "System Prompt"] # Skip header row
|
29 |
+
return prompts
|
30 |
+
|
31 |
+
# Load available stories and prompts
|
32 |
stories = load_stories()
|
33 |
+
prompts = load_prompts()
|
34 |
|
35 |
# Initialize the selected model
|
36 |
selected_model = default_model_name
|
|
|
128 |
question_prompt = "Please ask a simple question about the story to encourage interaction."
|
129 |
_, formatted_history, chat_history = interact(question_prompt, chat_history)
|
130 |
|
131 |
+
return formatted_history, chat_history, gr.update(value=""), gr.update(value=story['story']) # Reset the data table and show selected story
|
132 |
else:
|
133 |
print("Combined message is empty.")
|
134 |
else:
|
|
|
166 |
comment
|
167 |
])
|
168 |
|
169 |
+
# Append data to Google Sheets
|
170 |
+
sheet = client.open(google_sheets_name).worksheet(user_name) # Save to user-specific sheet
|
171 |
+
sheet.append_row([timestamp_str, user_name, model_name, story_name, last_user_message, last_assistant_message, score, comment])
|
172 |
|
173 |
df = pd.DataFrame(data, columns=["Timestamp", "User Name", "Model Name", "Story Name", "User Input", "Chat Response", "Score", "Comment"])
|
174 |
return df, gr.update(value="") # Clear the comment input box
|
|
|
181 |
user_dropdown = gr.Dropdown(choices=user_names, label="Select User Name")
|
182 |
initial_story = stories[0]["title"] if stories else None
|
183 |
story_dropdown = gr.Dropdown(choices=[story["title"] for story in stories], label="Select Story", value=initial_story)
|
184 |
+
system_prompt_dropdown = gr.Dropdown(choices=prompts, label="Select System Prompt", value=prompts[0] if prompts else "")
|
|
|
|
|
|
|
|
|
|
|
185 |
|
186 |
send_story_button = gr.Button("Send Story")
|
187 |
+
selected_story_textbox = gr.Textbox(lines=10, label="Selected Story", interactive=False)
|
188 |
|
189 |
with gr.Row():
|
190 |
with gr.Column(scale=1):
|
|
|
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_dropdown], outputs=[chatbot_output, chat_history_json, data_table, selected_story_textbox])
|
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 |
|