diff --git a/app/store/config.ts b/app/store/config.ts index 346f38da2..590a1579d 100644 --- a/app/store/config.ts +++ b/app/store/config.ts @@ -73,6 +73,10 @@ export const ALL_MODELS = [ name: "gpt-3.5-turbo-0301", available: true, }, + { + name: "text-davinci-003", + available: true, + }, ] as const; export type ModelType = (typeof ALL_MODELS)[number]["name"];