File size: 289 Bytes
497983e
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
response = openai.Completion.create(
  model="text-davinci-003",
  prompt="Write a movie title for a coming of age romantic comedy starring "+ actor1 +" and "+ actor2 +" directed by Judd Apatow",
  temperature=0.7,
  max_tokens=256,
  top_p=1,
  frequency_penalty=0,
  presence_penalty=0
)