feat: add gpt-4o-mini to MODEL_NAMES constant (#2813)

* refactor: add gpt-4o-mini to MODEL_NAMES constant

* [autofix.ci] apply automated fixes

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
Cezar Vasconcelos 2024-07-18 20:10:32 -03:00 committed by GitHub
commit 6c4e259042
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1 +1,9 @@
MODEL_NAMES = ["gpt-4o", "gpt-4-turbo", "gpt-4-turbo-preview", "gpt-4", "gpt-3.5-turbo", "gpt-3.5-turbo-0125"]
MODEL_NAMES = [
"gpt-4o-mini",
"gpt-4o",
"gpt-4-turbo",
"gpt-4-turbo-preview",
"gpt-4",
"gpt-3.5-turbo",
"gpt-3.5-turbo-0125",
]