LinJulya commited on
Commit
317810f
·
1 Parent(s): a3fae60

Edited prompt, more shots

Browse files
Files changed (1) hide show
  1. app.py +54 -0
app.py CHANGED
@@ -207,6 +207,58 @@ By leveraging the power of ChatGPT-4, HR professionals can create job advertisem
207
 
208
  Remember, in the digital age of recruitment, your job ad is your first impression. So make it count!"""
209
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
210
 
211
  # Function to make API call
212
  def api_call(messages, temperature=0.9, model="gpt-4-1106-preview"):
@@ -239,6 +291,8 @@ def process_inputs(EPA_title, Task_Description, Extra_input, Department):
239
  {"role": "system", "content": SystemPrompt_20},
240
  {"role": "user", "content": UserPrompt_20},
241
  {"role": "assistant", "content": AssistantPrompt_20},
 
 
242
  {"role": "user", "content": f"""Task: {EPA_title}.
243
  Task Description: {Task_Description}
244
  Additional Instructions: The tutorial should be aimed at employees in a {Department} department."""}
 
207
 
208
  Remember, in the digital age of recruitment, your job ad is your first impression. So make it count!"""
209
 
210
+ UserPrompt_21 = r""""Task: Crafting product update checklists on product updates and new features for customer onboarding
211
+ Task Description: Review the latest product updates and new features, ensuring a comprehensive understanding of their functionalities and benefits.
212
+ Create detailed checklists that outline step-by-step procedures for clients to effectively integrate and utilize these updates and features in their existing systems or processes.
213
+ Ensure the checklists are clear, user-friendly, and tailored to support customers of varying technical proficiency, facilitating smooth onboarding and optimal use of the new product capabilities.
214
+ Additional instructions: The tutorial is aimed at employees in a Client Support department."
215
+
216
+ HOOK:
217
+ If you're in client support, you know how tricky it can be to explain new product features to a wide range of customers. Imagine having a tool that helps you create easy-to-follow checklists for every update, making the customer onboarding process a breeze. With ChatGPT, creating user-friendly guides for product updates just got a lot easier!
218
+
219
+ TITLE:
220
+ Create Easy-to-Follow Product Update Checklists with ChatGPT: A Guide for Client Support Teams
221
+
222
+ INTRO:
223
+ Hello there, Client Support team members! It's a known fact that when a new product update rolls out, it's your responsibility to ensure that customers understand and can effectively use these new features. This isn't simply about telling them what's new; it's about guiding them through the process, step by step, ensuring they can integrate these updates into their systems or processes, regardless of their technical proficiency.
224
+
225
+ But how do you create clear, user-friendly checklists that cater to customers with varying levels of expertise? That's where ChatGPT comes in. In this tutorial, we'll walk you through how to use ChatGPT to develop comprehensive, easy-to-understand checklists for every product update. We'll show you how this tool can help you break down complex updates into simple, manageable steps for your customers. Are you ready to revolutionize your customer onboarding process and make product updates a seamless experience for your clients? Let's get started!"""
226
+
227
+ AssistantPrompt_21 = r"""*LEARNING OBJECTIVES SUMMARY*
228
+ By the end of this tutorial, you will be able to:
229
+
230
+ 1. Use ChatGPT to interpret product updates and new features
231
+ 2. Generate detailed, user-friendly checklists for product onboarding
232
+
233
+ *LEARNING OBJECTIVE 1*
234
+ Firstly, let's get a comprehensive understanding of product updates and their benefits.
235
+
236
+ Product updates can range from minor tweaks to significant overhauls. It's crucial to understand these updates thoroughly before creating a checklist to guide customers.
237
+
238
+ Suppose we have a recent update for an email marketing software called 'MailBlitz'. The update includes a new feature that allows users to segment their email lists based on customer behavior and an improved user interface.
239
+
240
+ To get a comprehensive understanding, feed this information to ChatGPT.
241
+
242
+ Type into the ChatGPT:
243
+ "You are a software expert. I need a detailed explanation of the latest updates on an email marketing software called 'MailBlitz'. The updates include a new feature allowing users to segment their email lists based on customer behavior and an improved user interface. Ask me as many questions as you need until you have enough information to provide me with the desired output."
244
+
245
+ Then, press the send button.
246
+
247
+ ChatGPT will ask relevant questions until it has enough information to provide a detailed explanation.
248
+
249
+ *LEARNING OBJECTIVE 2*
250
+ Next, let's move on to create a user-friendly checklist for these updates. This checklist is meant to guide users through the process of effectively integrating and using these updates, regardless of their technical proficiency.
251
+
252
+ Type into the ChatGPT:
253
+ "Now that we understand the update, let's create a step-by-step checklist to help users integrate these updates into their systems. The checklist should be clear, user-friendly, and cater to users with varying levels of technical proficiency."
254
+
255
+ Then, press the send button.
256
+
257
+ ChatGPT will generate a comprehensive checklist, breaking down complex procedures into simple, digestible steps.
258
+
259
+ *CONCLUSION*
260
+ And there you have it! With the help of ChatGPT, you've just created a detailed, user-friendly checklist to guide your customers through the latest product updates. Remember, the key is to understand the updates thoroughly before creating the checklist. Use this tool to your advantage and make onboarding a seamless experience for your clients. Happy onboarding!"""
261
+
262
 
263
  # Function to make API call
264
  def api_call(messages, temperature=0.9, model="gpt-4-1106-preview"):
 
291
  {"role": "system", "content": SystemPrompt_20},
292
  {"role": "user", "content": UserPrompt_20},
293
  {"role": "assistant", "content": AssistantPrompt_20},
294
+ {"role": "user", "content": UserPrompt_21},
295
+ {"role": "assistant", "content": AssistantPrompt_21},
296
  {"role": "user", "content": f"""Task: {EPA_title}.
297
  Task Description: {Task_Description}
298
  Additional Instructions: The tutorial should be aimed at employees in a {Department} department."""}