kyleebrooks commited on
Commit
2512cdc
1 Parent(s): d69e259

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-4o-2024-05-13'
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-mini'
75
  history = history or []
76
  output = generate_response(input, model_type)
77
  history.append((input, output))