From 73eac1072fa177c4c8e33601d70bdb3952ba8042 Mon Sep 17 00:00:00 2001 From: zouzhongy <853794216@qq.com> Date: Mon, 24 Apr 2023 19:58:08 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0text-davinci-003?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/store/config.ts | 4 ++++ 1 file changed, 4 insertions(+) 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"];