I've been playing around with the API using 'text-davinci-003'
I've use the same prompt through code with the API and with the website (chat.openai.com)
Prompt: Write a poem about how Jameson and Heineken are like peanut butter and jelly
Output of API:
Jameson and Heineken, two drinks that go together,
just like peanut butter and jelly!
One has a strong bite and one is light and smooth,
both making you feel like you've got something to prove.
Jameson is a whiskey, a strong and bold flavor,
Heineken brings a crisp and refreshing flavor.
Peanut butter and jelly, a classic sandwich treat,
Both Jameson and Heineken, it's hard to compete.
Both drinks are great, no matter your choice,
Jameson and Heineken, a great pairing rejoice!
Output of Website:
Jameson, smooth and warm,
Heineken, crisp and cold,
Like peanut butter and jelly,
Together, stories they're told.
One for sipping, one for shots,
But both with a story to share,
Like peanut butter and jelly,
They complement, they repair.
Jameson, the whiskey of the Irish,
Heineken, a brew from the Dutch,
Like peanut butter and jelly,
Their origins, a story to clutch.
So here's to Jameson and Heineken,
Two delicious treats,
Like peanut butter and jelly,
They make life a little sweeter, a little more complete.
As you can see the website is able to create a much more creative and descriptive poem. Is the website running a different engine?
Here is a snippet of my python code:
prompt = ("Write a poem about how Jameson and Heineken are like peanut butter and jelly")
completions = openai.Completion.create(
engine="text-davinci-003",
prompt=prompt,
max_tokens=2048,
n=1,
stop=None,
temperature=0.7,
)
Any insight/advice would be appreciated.