Skip to content

Commit

Permalink
Merge pull request openai#6 from openai/dev/atty/text-davinci-003
Browse files Browse the repository at this point in the history
Update text model to text-davinci-003
  • Loading branch information
logankilpatrick committed Jan 5, 2023
2 parents 353c6ae + a306af0 commit a39f551
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def index():
if request.method == "POST":
animal = request.form["animal"]
response = openai.Completion.create(
model="text-davinci-002",
model="text-davinci-003",
prompt=generate_prompt(animal),
temperature=0.6,
)
Expand Down

0 comments on commit a39f551

Please sign in to comment.