mrprycep069 commited on
Commit
3a78808
1 Parent(s): d2e49a7

Changing the model in app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -27,7 +27,7 @@ menulist = [{"role": "system", "content": "You are ChatGPT-Clone AI Robot"}]
27
  def ChatGPTclone(input):
28
  menulist.append({"role": "user", "content": input})
29
  response = openai.ChatCompletion.create(
30
- model = "gpt-3.5-turbo-16k-0613",
31
  messages = menulist
32
  )
33
  reply = response['choices'][0]['message']['content']
 
27
  def ChatGPTclone(input):
28
  menulist.append({"role": "user", "content": input})
29
  response = openai.ChatCompletion.create(
30
+ model = "gpt-3.5-turbo-16k",
31
  messages = menulist
32
  )
33
  reply = response['choices'][0]['message']['content']