customer_email ="""Arrr, I be fuming that me blender lid \flew off and splattered me kitchen walls \with smoothie! And to make matters worse,\the warranty don't cover the cost of \cleaning up me kitchen. I need yer help \right now, matey!"""
Prompt
style ="""American English \in a calm and respectful tone"""
prompt =f"""Translate the text \that is delimited by triple backticks into a style that is {style}.text: ```{customer_email}```"""
Result
response = get_completion(prompt)
response
-’ I am quite frustrated that my blender lid flew off and made a mess of my kitchen walls with smoothie! To add to my frustration, the warranty does not cover the cost of cleaning up my kitchen. I kindly request your assistance at this moment, my friend.’
PromptTemplate(input_variables=[‘style’, ‘text’], output_parser=None, partial_variables={}, template=‘Translate the text that is delimited by triple backticks into a style that is {style}. text: {text}’, template_format=‘f-string’, validate_template=True)
customer_email ="""Arrr, I be fuming that me blender lid \flew off and splattered me kitchen walls \with smoothie! And to make matters worse, \the warranty don't cover the cost of \cleaning up me kitchen. I need yer help \right now, matey!"""
Style:
customer_style ="""American English \in a calm and respectful tone"""
content=“Translate the text that is delimited by triple backticks into a style that is American English in a calm and respectful tone. text: \nArrr, I be fuming that me blender lid flew off and splattered me kitchen walls with smoothie! And to make matters worse, the warranty don't cover the cost of cleaning up me kitchen. I need yer help right now, matey!\n” additional_kwargs={} example=False
Customer messages response
# Call the LLM to translate to the style of the customer messagecustomer_response = chat(customer_messages)
print(customer_response.content)
I’m really frustrated that my blender lid flew off and made a mess of my kitchen walls with smoothie! And to make things even worse, the warranty doesn’t cover the cost of cleaning up my kitchen. I could really use your help right now, my friend!
Service reply input
service_reply ="""Hey there customer, \the warranty does not cover \cleaning expenses for your kitchen \because it's your fault that \you misused your blender \by forgetting to put the lid on before \starting the blender. \Tough luck! See ya!"""
service_style_pirate ="""\a polite tone \that speaks in English Pirate\"""
Translate the text that is delimited by triple backticks into a style that is a polite tone that speaks in English Pirate. text: ```Hey there customer, the warranty does not cover cleaning expenses for your kitchen because it’s your fault that you misused your blender by forgetting to put the lid on before starting the blender. Tough luck! See ya! ```
Ahoy there, matey! I regret to inform ye that the warranty be not coverin’ the costs o’ cleanin’ yer galley, as ‘tis yer own fault fer misusin’ yer blender by forgettin’ to secure the lid afore startin’ it. Aye, tough luck, me heartie! Fare thee well!
Output Parsers
Output style
Let’s start with defining how we would like the LLM output to look like:
customer_review ="""\This leaf blower is pretty amazing. It has four settings:\candle blower, gentle breeze, windy city, and tornado. \It arrived in two days, just in time for my wife's \anniversary present. \I think my wife liked it so much she was speechless. \So far I've been the only one using it, and I've been \using it every other morning to clear the leaves on our lawn. \It's slightly more expensive than the other leaf blowers \out there, but I think it's worth it for the extra features."""review_template ="""\For the following text, extract the following information:gift: Was the item purchased as a gift for someone else? \Answer True if yes, False if not or unknown.delivery_days: How many days did it take for the product \to arrive? If this information is not found, output -1.price_value: Extract any sentences about the value or price,\and output them as a comma separated Python list.Format the output as JSON with the following keys:giftdelivery_daysprice_valuetext: {text}"""
input_variables=[‘text’] output_parser=None partial_variables={} messages=[HumanMessagePromptTemplate(prompt=PromptTemplate(input_variables=[‘text’], output_parser=None, partial_variables={}, template=’For the following text, extract the following information:: Was the item purchased as a gift for someone else? Answer True if yes, False if not or unknown._days: How many days did it take for the product to arrive? If this information is not found, output -1._value: Extract any sentences about the value or price,and output them as a comma separated Python list.the output as JSON with the following keys:_days_value: {text}‘, template_format=’f-string’, validate_template=True), additional_kwargs={})]
{ "gift": false, "delivery_days": 2, "price_value": ["It's slightly more expensive than the other leaf blowers out there, but I think it's worth it for the extra features."], "text": "This leaf blower is pretty amazing. It has four settings:candle blower, gentle breeze, windy city, and tornado. It arrived in two days, just in time for my wife's anniversary present. I think my wife liked it so much she was speechless. So far I've been the only one using it, and I've been using it every other morning to clear the leaves on our lawn. It's slightly more expensive than the other leaf blowers out there, but I think it's worth it for the extra features."}
Inspect response
type(response.content)
str
# You will get an error by running this line of code# because'gift' is not a dictionary# 'gift' is a stringresponse.content.get('gift')
---------------------------------------------------------------------------AttributeError Traceback (most recent call last)/Users/jankirenz/labs/lab-langchain-basics/slides/1_model_prompt_parser.qmd in line 1---->342 response.content.get('gift')AttributeError: 'str'object has no attribute 'get'
Parse Output into Dictionary
Parse output into dictionary
Parse the LLM output string into a Python dictionary
gift_schema = ResponseSchema(name="gift", description="Was the item purchased\ as a gift for someone else? \ Answer True if yes,\ False if not or unknown.")delivery_days_schema = ResponseSchema(name="delivery_days", description="How many days\ did it take for the product\ to arrive? If this \ information is not found,\ output -1.")price_value_schema = ResponseSchema(name="price_value", description="Extract any\ sentences about the value or \ price, and output them as a \ comma separated Python list.")response_schemas = [gift_schema, delivery_days_schema, price_value_schema]
review_template_2 ="""\For the following text, extract the following information:gift: Was the item purchased as a gift for someone else? \Answer True if yes, False if not or unknown.delivery_days: How many days did it take for the product\to arrive? If this information is not found, output -1.price_value: Extract any sentences about the value or price,\and output them as a comma separated Python list.text: {text}{format_instructions}"""prompt = ChatPromptTemplate.from_template(template=review_template_2)messages = prompt.format_messages(text=customer_review, format_instructions=format_instructions)
Inspect template
print(messages[0].content)
For the following text, extract the following information: gift: Was the item purchased as a gift for someone else? Answer True if yes, False if not or unknown. delivery_days: How many days did it take for the productto arrive? If this information is not found, output -1. price_value: Extract any sentences about the value or price,and output them as a comma separated Python list. text: This leaf blower is pretty amazing. It has four settings:candle blower, gentle breeze, windy city, and tornado. It arrived in two days, just in time for my wife’s anniversary present. I think my wife liked it so much she was speechless. So far I’ve been the only one using it, and I’ve been using it every other morning to clear the leaves on our lawn. It’s slightly more expensive than the other leaf blowers out there, but I think it’s worth it for the extra features.
The output should be a markdown code snippet formatted in the following schema, including the leading and trailing “json" and "”:
{"gift":false,"delivery_days":"2","price_value":"It's slightly more expensive than the other leaf blowers out there, but I think it's worth it for the extra features."}
{'gift':False,'delivery_days':'2','price_value':"It's slightly more expensive than the other leaf blowers out there, but I think it's worth it for the extra features."}