update gpt4 models (0613, vision, dalle3)

This commit is contained in:
Zhang Minghan 2023-11-02 22:52:44 +08:00
parent a83fe4c64d
commit 6174948bb9
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ function ModelSelector(props: ModelSelectorProps) {
});
const list = supportModels.map((model: Model): SelectItemProps => {
const array = ["gpt-4", "claude-2"];
const array = ["gpt-4-0613", "gpt-4v", "gpt-4-dalle", "claude-2"];
if (subscription && array.includes(model.id)) {
return {
name: model.id,

View File

@ -8,7 +8,7 @@ import {
} from "@/utils/env.ts";
import { getMemory } from "@/utils/memory.ts";
export const version = "3.6.8";
export const version = "3.6.8rc";
export const dev: boolean = getDev();
export const deploy: boolean = true;
export let rest_api: string = getRestApi(deploy);