fix: Add claude-3-opus-20240229 option to settingsService.ts (#342)

* Added claude-3-opus-20240229 option to settingsService.ts

* Fix lint error

---------

Co-authored-by: Jim Su <jimsu@protonmail.com>
This commit is contained in:
Raphaël Fleury-le veso 2024-03-29 17:23:18 +01:00 committed by GitHub
parent a6f0c066b5
commit f3fda42765
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,8 +7,8 @@ export const MODELS = [
"gpt-3.5-turbo-1106",
"gpt-4-0125-preview",
"claude-3-haiku-20240307",
"claude-3-opus-20240229",
"claude-3-sonnet-20240229",
"claude-3-sonnet-20240307",
];
export type Model = (typeof MODELS)[number];