Pei-Han Hsu.
INFO7375 ST Prompt Engineering & AI Spring 2025
This website is built as part of my assignment - Teach a Prompt Pattern, combining the web development techniques with practical applications of AI and prompt engineering.
This website is built as part of my assignment - Teach a Prompt Pattern, combining the web development techniques with practical applications of AI and prompt engineering.
import gpt
# Define the role and situation
context = "You are a customer support agent. A customer is unhappy with their recent purchase."
prompt = f"{context} Write a polite response to address their concerns."
# Generate the response
response = gpt.generate(prompt)
print(response)
It helps generate responses that are specific to the given context or role, improving relevance and meeting user expectations more effectively.

