This commit is contained in:
GH Action - Upstream Sync
2023-06-07 01:13:44 +00:00
15 changed files with 611 additions and 26 deletions

View File

@@ -68,14 +68,6 @@ export const ALL_MODELS = [
name: "gpt-4-32k-0314",
available: ENABLE_GPT4,
},
{
name: "gpt-4-mobile",
available: ENABLE_GPT4,
},
{
name: "text-davinci-002-render-sha-mobile",
available: true,
},
{
name: "gpt-3.5-turbo",
available: true,

View File

@@ -84,7 +84,7 @@ export const useUpdateStore = create<UpdateStore>()(
}));
}
} catch (e) {
showToast((e as Error).message);
console.error((e as Error).message);
}
},
}),