mirror of
https://github.com/coaidev/coai.git
synced 2025-06-07 14:20:20 +09:00
update gpt4 models (0613, vision, dalle3)
This commit is contained in:
parent
a83fe4c64d
commit
6174948bb9
@ -42,7 +42,7 @@ function ModelSelector(props: ModelSelectorProps) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
const list = supportModels.map((model: Model): SelectItemProps => {
|
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)) {
|
if (subscription && array.includes(model.id)) {
|
||||||
return {
|
return {
|
||||||
name: model.id,
|
name: model.id,
|
||||||
|
@ -8,7 +8,7 @@ import {
|
|||||||
} from "@/utils/env.ts";
|
} from "@/utils/env.ts";
|
||||||
import { getMemory } from "@/utils/memory.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 dev: boolean = getDev();
|
||||||
export const deploy: boolean = true;
|
export const deploy: boolean = true;
|
||||||
export let rest_api: string = getRestApi(deploy);
|
export let rest_api: string = getRestApi(deploy);
|
||||||
|
Loading…
Reference in New Issue
Block a user