The Wayback Machine - https://web.archive.org/web/20230314221514/https://github.com/openai/openai-quickstart-python/commit/a306af085a74be37f4078d74d3ae69600b39b38e
Skip to content
Permalink
Browse files
Update text model to text-davinci-003
  • Loading branch information
athyuttamre committed Nov 29, 2022
1 parent 353c6ae commit a306af0
Showing 1 changed file with 1 addition and 1 deletion.
2 app.py
@@ -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,
)

0 comments on commit a306af0

Please sign in to comment.