kyleebrooks commited on
Commit
d69e259
1 Parent(s): 92166b5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -71,7 +71,7 @@ def my_chatbot(input, history, user_password):
71
  valid, message = validate_password(user_password)
72
  if not valid:
73
  return [(input, message)], []
74
- model_type='gpt-4-turbo-2024-04-09'
75
  history = history or []
76
  output = generate_response(input, model_type)
77
  history.append((input, output))
 
71
  valid, message = validate_password(user_password)
72
  if not valid:
73
  return [(input, message)], []
74
+ model_type='gpt-4o-2024-05-13'
75
  history = history or []
76
  output = generate_response(input, model_type)
77
  history.append((input, output))