Khóa học ngắn về kỹ thuật viết prompt cho ChatGPT, rất đáng học dành cho những ai đang muốn xây dựng application dựa trên LLM của GPT.
Link
: https://www.deeplearning.ai/short-courses/chatgpt-prompt-engineering-for-developers/From
: DeepLearning.AI, OpenAIInstructors
: Andrew Ng, Isa FulfordDựa trên thông tin trên internet để train mô hình khi đó những kết quả “có liên quan” nhất sẽ được trả về, nó có thể không hoàn toàn là câu trả lời cho câu hỏi mình nhập vào. Ví dụ:
>>> What is the capital of France
What is France's largest city?
What is France's population?
What is the currency of France?
Fine-tune on instructions & good attemps at following those instructions
>>> What is the capital of France
Paris
Some principles & tactics when working with LLMs
Viết instruction clear & specific nhất có thể
→ Get desired output & reduce the chance to get irrelevant information or incorrect answers.
**Tactics 1**
: use delimiters to clearly delicate the distinct parts of the input.
Triple quotes: """
Triple backticks: ```
Triple dashes: ---
Angle bracket: < >
XML tags: <tag> </tag>
prompt injection
: user give conflicting instructions → nó sẽ làm theo yêu cầu của người dùng chứ không phải trả lại câu trả lời cho những gì mình muốn.Tactics 2
: ask for structured output (HTML/JSON/….)
prompt = "Generate a list of.... Provide them in JSON format with..."
Tactics 3
: check whether conditions are satisfied.
Cần phải xem xét edge case và cách model xử lý nó để tránh một kết quả hoặc lỗi không mong muốn.
prompt = f"""
You will be provided with text delimited by triple quotes.
If it contains a sequence of instructions, \
re-write those instructions in the following format:
Step 1 - ...
Step 2 - …
…
Step N - …
If the text does not contain a sequence of instructions, \
then simply write \"No steps provided.\"
\"\"\"{text_2}\"\"\"
"""
Tactics 4
: few-shot prompting
Give successful examples of completing tasks we want to perform beform asking the model to to the actual task.
prompt = f"""
Your task is to answer in a consistent style.
<child>: Teach me about patience.
<grandparent>: The river .....
<child>: Teach me about resilience.
"""
Nếu mình đưa cho model một task quá phức tạp mà yêu cầu trong một thời gian ngắn hoặc trong số lượng từ rất ít thì nó có thể đưa ra một dự đoán không chính xác → Mình có thể chỉ dẫn cho model để nghĩ lâu hơn về 1 vấn đề (tính toán nhiều hơn)
Tactics 1
: specify the required steps to complete a task.
prompt_1 = f"""
Perform the following actions:
1 - Summarize the following text delimited by triple \
backticks with 1 sentence.
2 - Translate the summary into French.
3 - List each name in the French summary.
4 - Output a json object that contains the following \
keys: french_summary, num_names.
Use the following format:
Text: <text to summarize>
Summary: <summary>
Translation: <summary translation>
Names: <list of names in Italian summary>
Output JSON: <json with summary and num_names>
Text:
```{text}```
"""
Tactics 2
: instruct the models to work out with its own solution before rushing to a conclusion.
prompt = f"""
Your task is to determine if the student's solution is correct or not.
To solve the problem do the following:
- First, work out your own solution to the problem.
- Then compare your solution to the student's solution and evaluate if the student's solution is correct or not.
Don't decide if the student's solution is correct until
you have done the problem yourself.
Question: ....
Student's solution: ....
Actual solution:
"""
Nó có thể vẫn cố gắng trả lời những câu hỏi về những chủ đề mơ hồ và đưa ra kết luận nghe có vẻ hợp lý nhưng thật ra là không đúng. (which is called hallucinations
)
→ Khá nguy hiểm trong thực tế
→ cần phải xác định những case thế này và phòng tránh khi build applications
Iteratively analyze and refine the prompts
Khi làm việc với LLMs hoặc ML nói chung, rất khó để đạt được kết quả cuối cùng như mong muốn ở lần thử đầu tiên. Mình cần phải có một quy trình tốt để liên tục cải tiến prompt → chất lượng kết quả sẽ tốt lên và tiệm cận được những thứ mình mong muốn
Summarizing text with a focus on specific topics.
extract
instead of summarise
Summarize multiple reviews
reviews = [review_1, review_2, review_3, review_4]
for i in range(len(reviews)):
prompt = f"""
Your task is to generate a short summary of a product review from an ecommerce site.
Summarize the review below, delimited by triple backticks in at most 20 words.
Review: ```{reviews[i]}```
"""
response = get_completion(prompt)
print(i, response, "\n")
Infer sentiment & topics from different contexts.
Nếu sử dụng LLM thì chỉ cần viết prompt và nó sẽ tự làm với tốc độ nhanh (rất quan trọng khi build applications) và chỉ cần sử dụng 1 model, 1 api để làm nhiều tasks
Postitive/negative
prompt = f"""
What is the sentiment of the following product review,
which is delimited with triple backticks?
Give your answer as a single word, either "positive" or "negative".
Review text: '''{lamp_review}'''
"""
Identify types of emotions
prompt = f"""
Identify a list of emotions that the writer of the following review is expressing. \
Include no more than five items in the list. \
Format your answer as a list of lower-case words separated by commas.
Review text: '''{lamp_review}'''
"""
Identify dangers
prompt = f"""
Is the writer of the following review expressing anger?\
The review is delimited with triple backticks. \
Give your answer as either yes or no.
Review text: '''{lamp_review}'''
"""
Do multiple tasks at once
Trong trường hợp này, ta có thể truyền vào context và 1 list các topic, mình cần biết là context đó có thuộc topic nào trong số topic đã có hay không.
prompt = f"""
Determine whether each item in the following list of topics, which
is delimited with triple backticks.
Give your answer as list with 0 or 1 for each topic.
List of topics: {", ".join(topic_list)}
Text sample: '''{story}'''
"""
Use LLMs for text transformation task: language translation, spelling & grammar checking, tone adjustment, format conversion,…
Translation / Universal translation
prompt = f"""
Translate the following English text to Spanish: \
```Hi, I would like to order a blender```
"""
Tone transformation:
prompt = f"""
Translate the following from slang to a business letter:
'Dude, This is Joe, check out this spec on this standing lamp.'
"""
Format conversion:
prompt = f"""
Translate the following python dictionary from JSON to an HTML \
table with column headers and title: {data_json}
"""
Spell check / grammar check
text = f"""
YOUR TEXT GOES HERE
"""
prompt = f"proofread and correct this review: ```{text}```"
from redlines import Redlines
diff = Redlines(text,response)
display(Markdown(diff.output_markdown))
Generate customer service email that for each customer review
Expanding: taking a shorter piece of text (instruction, list,…) to generate longer piece of text (email, essay,…)
temperature
in LLMs:
temperature is like degree of exploration or degree of randomness
temperature = 0
.
tasks require variaty → higher temperatureCustomer service email:
sentiment = "negative"
review = f"""
YOUR REVIEW HERE
"""
prompt = f"""
You are a customer service AI assistant.
Your task is to send an email reply to a valued customer.
Given the customer email delimited by ```, \
Generate a reply to thank the customer for their review.
If the sentiment is positive or neutral, thank them for their review.
If the sentiment is negative, apologize and suggest that they can reach out to customer service.
Make sure to use specific details from the review.
Write in a concise and professional tone.
Sign the email as `AI customer agent`.
Customer review: ```{review}```
Review sentiment: {sentiment}
"""
Utilize the chat format to have extended conversations with chatbots personalized or specialized for specific tasks or behaviors.
Thay vì truyền vào một lệnh cơ bản cần complete, mình có thể truyền vào 1 list các message với nhiều roles khác nhau.
System
:
→ Mình có thể định hướng cuộc trò chuyện mà không cần biến yêu cầu thành 1 phần của cuộc hội thoại.
→ Giả sử mình build một application sử dụng Model này, khi mình nhận biết được user đang muốn gì, mình chỉ cần dùng system message để “nói chuyện” với model về ý muốn của user để model có câu trả lời phù hợp trong khi user không nhận ra điều ấy.
Assistant
User
user
assistant
Each conversation with a language model is a standalone conversation.
→ We must provide all relevant messages for the model to draw from the current conversation.
Trường hợp không cung cấp context
messages = [
{'role':'system', 'content':'You are friendly chatbot.'},
{'role':'user', 'content':'Hi, my name is Isa'} ]
>>> "Hello Isa! It's nice to meet you. How can I assist you today?"
messages = [
{'role':'system', 'content':'You are friendly chatbot.'},
{'role':'user', 'content':'Yes, can you remind me What is my name?'}]
>> "I'm sorry, I don't have access to information about your name..."
Trường hợp cung cấp các tin nhắn trước đó (context):
messages = [
{'role':'system', 'content':'You are friendly chatbot.'},
{'role':'user', 'content':'Hi, my name is Isa'},
{'role':'assistant', 'content': "Hi Isa! It's nice to meet you. \
Is there anything I can help you with today?"},
{'role':'user', 'content':'Yes, can you remind me What is my name?'}]
>>> "Your name is Isa."
Chatbot: mình cần phải cung cấp một context rõ ràng, nêu cụ thể từng case bot sẽ gặp phải và từng bước để giải quyết các trường hợp đó. Mình có thể set tone trả lời cho chatbot luôn.
context = [ {'role':'system', 'content':"""
You are OrderBot, an automated service to collect orders for a pizza restaurant. \
You first greet the customer, then collects the order, \
and then asks if it's a pickup or delivery. \
You wait to collect the entire order, then summarize it and check for a final \
time if the customer wants to add anything else. \
If it's a delivery, you ask for an address. \
Finally you collect the payment.\
Make sure to clarify all options, extras and sizes to uniquely \
identify the item from the menu.\
You respond in a short, very conversational friendly style. \
The menu includes
......
......
"""}]
system
để tổng hợp lại các order của khách theo ý muốn và để xử lý.Courses summary