ChatGPT Prompt Engineering for Developers
Fouad Trad
Machine Learning Engineer
prompt = "What is prompt engineering?"
print(get_response(prompt))
Prompt engineering refers to designing and refining prompts or instructions given
to a language model like ChatGPT to elicit desired responses or behaviors. It
involves formulating specific guidelines or hints to guide the model's output
towards a desired outcome.
prompt = """
Q: Sum the numbers 3, 5, and 6. A: 3+5+6=14
Q: Sum the numbers 2, 4, and 7. A:
"""
print(get_response(prompt))
2+4+7=13
prompt = """
Q: Sum the numbers 3, 5, and 6. A: The sum of 3, 5, and 6 is 14
Q: Sum the numbers 2, 4, and 7. A:
"""
print(get_response(prompt))
The sum of 2, 4, and 7 is 13
prompt = """
Text: Today the weather is fantastic -> Classification: positive
Text: The furniture is small -> Classification: neutral
Text: I don't like your attitude -> Classification: negative
"""
prompt = """
Text: Today the weather is fantastic -> Classification: positive
Text: The furniture is small -> Classification: neutral
Text: I don't like your attitude -> Classification: negative
Text: That shot selection was awful -> Classification:
"""
print(get_response(prompt))
negative
response = client.chat.completions.create( model = "gpt-3.5-turbo",
messages = [{"role": "user", "content": "Today the weather is fantastic"},
{"role": "assistant", "content": "positive"},
{"role": "user", "content": "I don't like your attitude"}, {"role": "assistant", "content": "negative"},
{"role": "user", "content": "That shot selection was awful"} ], temperature = 0 )
print(response.choices[0].message.content)
negative
ChatGPT Prompt Engineering for Developers