Reasoning with chain-of-thought prompts
Chain-of-thought prompting is helpful to explain the reasoning behind the answer that the model is giving, especially in complex tasks such as generating the solution for a mathematical problem or a riddle. In this exercise, you will craft a chain-of-thought prompt to let the language model guess the age of your friend's father based on some information you will provide.
The OpenAI
package and the get_response()
function have been pre-loaded for you.
This exercise is part of the course
Prompt Engineering with the OpenAI API
Exercise instructions
- Create a chain-of-thought
prompt
to determine your friend's father's age in 10 years, given that he is currently twice your friend's age, and your friend is 20.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
client = OpenAI(api_key="")
# Create the chain-of-thought prompt
prompt = ____
response = get_response(prompt)
print(response)