mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-09-27 21:56:38 +08:00
fix: allow isVisionModel function read runtime env var VISION_MODELS
This commit is contained in:
parent
0c3d4462ca
commit
fb5e9e5aed
@ -13,6 +13,7 @@ const DANGER_CONFIG = {
|
|||||||
hideBalanceQuery: serverConfig.hideBalanceQuery,
|
hideBalanceQuery: serverConfig.hideBalanceQuery,
|
||||||
disableFastLink: serverConfig.disableFastLink,
|
disableFastLink: serverConfig.disableFastLink,
|
||||||
customModels: serverConfig.customModels,
|
customModels: serverConfig.customModels,
|
||||||
|
visionModels: serverConfig.visionModels,
|
||||||
defaultModel: serverConfig.defaultModel,
|
defaultModel: serverConfig.defaultModel,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -84,10 +84,13 @@ export class ClaudeApi implements LLMApi {
|
|||||||
return res?.content?.[0]?.text;
|
return res?.content?.[0]?.text;
|
||||||
}
|
}
|
||||||
async chat(options: ChatOptions): Promise<void> {
|
async chat(options: ChatOptions): Promise<void> {
|
||||||
const visionModel = isVisionModel(options.config.model);
|
|
||||||
|
|
||||||
const accessStore = useAccessStore.getState();
|
const accessStore = useAccessStore.getState();
|
||||||
|
|
||||||
|
const visionModel = isVisionModel(
|
||||||
|
options.config.model,
|
||||||
|
accessStore.visionModels,
|
||||||
|
);
|
||||||
|
|
||||||
const shouldStream = !!options.config.stream;
|
const shouldStream = !!options.config.stream;
|
||||||
|
|
||||||
const modelConfig = {
|
const modelConfig = {
|
||||||
|
@ -83,7 +83,7 @@ export class GeminiProApi implements LLMApi {
|
|||||||
}
|
}
|
||||||
const messages = _messages.map((v) => {
|
const messages = _messages.map((v) => {
|
||||||
let parts: any[] = [{ text: getMessageTextContent(v) }];
|
let parts: any[] = [{ text: getMessageTextContent(v) }];
|
||||||
if (isVisionModel(options.config.model)) {
|
if (isVisionModel(options.config.model, accessStore.visionModels)) {
|
||||||
const images = getMessageImages(v);
|
const images = getMessageImages(v);
|
||||||
if (images.length > 0) {
|
if (images.length > 0) {
|
||||||
multimodal = true;
|
multimodal = true;
|
||||||
|
@ -194,6 +194,8 @@ export class ChatGPTApi implements LLMApi {
|
|||||||
|
|
||||||
let requestPayload: RequestPayload | DalleRequestPayload;
|
let requestPayload: RequestPayload | DalleRequestPayload;
|
||||||
|
|
||||||
|
const accessStore = useAccessStore.getState();
|
||||||
|
|
||||||
const isDalle3 = _isDalle3(options.config.model);
|
const isDalle3 = _isDalle3(options.config.model);
|
||||||
const isO1 = options.config.model.startsWith("o1");
|
const isO1 = options.config.model.startsWith("o1");
|
||||||
if (isDalle3) {
|
if (isDalle3) {
|
||||||
@ -211,7 +213,10 @@ export class ChatGPTApi implements LLMApi {
|
|||||||
style: options.config?.style ?? "vivid",
|
style: options.config?.style ?? "vivid",
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
const visionModel = isVisionModel(options.config.model);
|
const visionModel = isVisionModel(
|
||||||
|
options.config.model,
|
||||||
|
accessStore.visionModels,
|
||||||
|
);
|
||||||
const messages: ChatOptions["messages"] = [];
|
const messages: ChatOptions["messages"] = [];
|
||||||
for (const v of options.messages) {
|
for (const v of options.messages) {
|
||||||
const content = visionModel
|
const content = visionModel
|
||||||
|
@ -94,7 +94,11 @@ export class HunyuanApi implements LLMApi {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async chat(options: ChatOptions) {
|
async chat(options: ChatOptions) {
|
||||||
const visionModel = isVisionModel(options.config.model);
|
const accessStore = useAccessStore.getState();
|
||||||
|
const visionModel = isVisionModel(
|
||||||
|
options.config.model,
|
||||||
|
accessStore.visionModels,
|
||||||
|
);
|
||||||
const messages = options.messages.map((v, index) => ({
|
const messages = options.messages.map((v, index) => ({
|
||||||
// "Messages 中 system 角色必须位于列表的最开始"
|
// "Messages 中 system 角色必须位于列表的最开始"
|
||||||
role: index !== 0 && v.role === "system" ? "user" : v.role,
|
role: index !== 0 && v.role === "system" ? "user" : v.role,
|
||||||
|
@ -490,6 +490,7 @@ export function ChatActions(props: {
|
|||||||
const currentProviderName =
|
const currentProviderName =
|
||||||
session.mask.modelConfig?.providerName || ServiceProvider.OpenAI;
|
session.mask.modelConfig?.providerName || ServiceProvider.OpenAI;
|
||||||
const allModels = useAllModels();
|
const allModels = useAllModels();
|
||||||
|
const customVisionModels = useAccessStore().visionModels;
|
||||||
const models = useMemo(() => {
|
const models = useMemo(() => {
|
||||||
const filteredModels = allModels.filter((m) => m.available);
|
const filteredModels = allModels.filter((m) => m.available);
|
||||||
const defaultModel = filteredModels.find((m) => m.isDefault);
|
const defaultModel = filteredModels.find((m) => m.isDefault);
|
||||||
@ -529,7 +530,7 @@ export function ChatActions(props: {
|
|||||||
const isMobileScreen = useMobileScreen();
|
const isMobileScreen = useMobileScreen();
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const show = isVisionModel(currentModel);
|
const show = isVisionModel(currentModel, customVisionModels);
|
||||||
setShowUploadImage(show);
|
setShowUploadImage(show);
|
||||||
if (!show) {
|
if (!show) {
|
||||||
props.setAttachImages([]);
|
props.setAttachImages([]);
|
||||||
@ -1457,10 +1458,12 @@ function _Chat() {
|
|||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
const customVisionModels = useAccessStore().visionModels;
|
||||||
|
|
||||||
const handlePaste = useCallback(
|
const handlePaste = useCallback(
|
||||||
async (event: React.ClipboardEvent<HTMLTextAreaElement>) => {
|
async (event: React.ClipboardEvent<HTMLTextAreaElement>) => {
|
||||||
const currentModel = chatStore.currentSession().mask.modelConfig.model;
|
const currentModel = chatStore.currentSession().mask.modelConfig.model;
|
||||||
if (!isVisionModel(currentModel)) {
|
if (!isVisionModel(currentModel, customVisionModels)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const items = (event.clipboardData || window.clipboardData).items;
|
const items = (event.clipboardData || window.clipboardData).items;
|
||||||
@ -1497,7 +1500,7 @@ function _Chat() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
[attachImages, chatStore],
|
[attachImages, chatStore, customVisionModels],
|
||||||
);
|
);
|
||||||
|
|
||||||
async function uploadImage() {
|
async function uploadImage() {
|
||||||
@ -1545,7 +1548,7 @@ function _Chat() {
|
|||||||
setAttachImages(images);
|
setAttachImages(images);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 快捷键 shortcut keys
|
// 捷键 shortcut keys
|
||||||
const [showShortcutKeyModal, setShowShortcutKeyModal] = useState(false);
|
const [showShortcutKeyModal, setShowShortcutKeyModal] = useState(false);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
@ -21,6 +21,7 @@ declare global {
|
|||||||
ENABLE_BALANCE_QUERY?: string; // allow user to query balance or not
|
ENABLE_BALANCE_QUERY?: string; // allow user to query balance or not
|
||||||
DISABLE_FAST_LINK?: string; // disallow parse settings from url or not
|
DISABLE_FAST_LINK?: string; // disallow parse settings from url or not
|
||||||
CUSTOM_MODELS?: string; // to control custom models
|
CUSTOM_MODELS?: string; // to control custom models
|
||||||
|
VISION_MODELS?: string; // to control vision models
|
||||||
DEFAULT_MODEL?: string; // to control default model in every new chat window
|
DEFAULT_MODEL?: string; // to control default model in every new chat window
|
||||||
|
|
||||||
// stability only
|
// stability only
|
||||||
@ -123,13 +124,16 @@ export const getServerSideConfig = () => {
|
|||||||
|
|
||||||
const disableGPT4 = !!process.env.DISABLE_GPT4;
|
const disableGPT4 = !!process.env.DISABLE_GPT4;
|
||||||
let customModels = process.env.CUSTOM_MODELS ?? "";
|
let customModels = process.env.CUSTOM_MODELS ?? "";
|
||||||
|
let visionModels = process.env.VISION_MODELS ?? "";
|
||||||
let defaultModel = process.env.DEFAULT_MODEL ?? "";
|
let defaultModel = process.env.DEFAULT_MODEL ?? "";
|
||||||
|
|
||||||
if (disableGPT4) {
|
if (disableGPT4) {
|
||||||
if (customModels) customModels += ",";
|
if (customModels) customModels += ",";
|
||||||
customModels += DEFAULT_MODELS.filter(
|
customModels += DEFAULT_MODELS.filter(
|
||||||
(m) =>
|
(m) =>
|
||||||
(m.name.startsWith("gpt-4") || m.name.startsWith("chatgpt-4o") || m.name.startsWith("o1")) &&
|
(m.name.startsWith("gpt-4") ||
|
||||||
|
m.name.startsWith("chatgpt-4o") ||
|
||||||
|
m.name.startsWith("o1")) &&
|
||||||
!m.name.startsWith("gpt-4o-mini"),
|
!m.name.startsWith("gpt-4o-mini"),
|
||||||
)
|
)
|
||||||
.map((m) => "-" + m.name)
|
.map((m) => "-" + m.name)
|
||||||
@ -247,6 +251,7 @@ export const getServerSideConfig = () => {
|
|||||||
hideBalanceQuery: !process.env.ENABLE_BALANCE_QUERY,
|
hideBalanceQuery: !process.env.ENABLE_BALANCE_QUERY,
|
||||||
disableFastLink: !!process.env.DISABLE_FAST_LINK,
|
disableFastLink: !!process.env.DISABLE_FAST_LINK,
|
||||||
customModels,
|
customModels,
|
||||||
|
visionModels,
|
||||||
defaultModel,
|
defaultModel,
|
||||||
allowedWebDavEndpoints,
|
allowedWebDavEndpoints,
|
||||||
};
|
};
|
||||||
|
@ -123,6 +123,7 @@ const DEFAULT_ACCESS_STATE = {
|
|||||||
disableGPT4: false,
|
disableGPT4: false,
|
||||||
disableFastLink: false,
|
disableFastLink: false,
|
||||||
customModels: "",
|
customModels: "",
|
||||||
|
visionModels: "",
|
||||||
defaultModel: "",
|
defaultModel: "",
|
||||||
|
|
||||||
// tts config
|
// tts config
|
||||||
|
14
app/utils.ts
14
app/utils.ts
@ -7,6 +7,7 @@ import { ServiceProvider } from "./constant";
|
|||||||
import { fetch as tauriStreamFetch } from "./utils/stream";
|
import { fetch as tauriStreamFetch } from "./utils/stream";
|
||||||
import { VISION_MODEL_REGEXES, EXCLUDE_VISION_MODEL_REGEXES } from "./constant";
|
import { VISION_MODEL_REGEXES, EXCLUDE_VISION_MODEL_REGEXES } from "./constant";
|
||||||
import { getClientConfig } from "./config/client";
|
import { getClientConfig } from "./config/client";
|
||||||
|
import { getModelProvider } from "./utils/model";
|
||||||
|
|
||||||
export function trimTopic(topic: string) {
|
export function trimTopic(topic: string) {
|
||||||
// Fix an issue where double quotes still show in the Indonesian language
|
// Fix an issue where double quotes still show in the Indonesian language
|
||||||
@ -253,12 +254,15 @@ export function getMessageImages(message: RequestMessage): string[] {
|
|||||||
return urls;
|
return urls;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function isVisionModel(model: string) {
|
export function isVisionModel(model: string, customVisionModels: string) {
|
||||||
const clientConfig = getClientConfig();
|
const clientConfig = getClientConfig();
|
||||||
const envVisionModels = clientConfig?.visionModels
|
const allVisionModelsList = [customVisionModels, clientConfig?.visionModels]
|
||||||
?.split(",")
|
?.join(",")
|
||||||
.map((m) => m.trim());
|
.split(",")
|
||||||
if (envVisionModels?.includes(model)) {
|
.map((m) => m.trim())
|
||||||
|
.filter(Boolean)
|
||||||
|
.map((m) => getModelProvider(m)[0]);
|
||||||
|
if (allVisionModelsList?.includes(model)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
|
@ -2,6 +2,7 @@ import { isVisionModel } from "../app/utils";
|
|||||||
|
|
||||||
describe("isVisionModel", () => {
|
describe("isVisionModel", () => {
|
||||||
const originalEnv = process.env;
|
const originalEnv = process.env;
|
||||||
|
const customVisionModels = "custom-vlm,another-vlm";
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
jest.resetModules();
|
jest.resetModules();
|
||||||
@ -27,12 +28,12 @@ describe("isVisionModel", () => {
|
|||||||
];
|
];
|
||||||
|
|
||||||
visionModels.forEach((model) => {
|
visionModels.forEach((model) => {
|
||||||
expect(isVisionModel(model)).toBe(true);
|
expect(isVisionModel(model, customVisionModels)).toBe(true);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
test("should exclude specific models", () => {
|
test("should exclude specific models", () => {
|
||||||
expect(isVisionModel("claude-3-5-haiku-20241022")).toBe(false);
|
expect(isVisionModel("claude-3-5-haiku-20241022", customVisionModels)).toBe(false);
|
||||||
});
|
});
|
||||||
|
|
||||||
test("should not identify non-vision models", () => {
|
test("should not identify non-vision models", () => {
|
||||||
@ -44,24 +45,26 @@ describe("isVisionModel", () => {
|
|||||||
];
|
];
|
||||||
|
|
||||||
nonVisionModels.forEach((model) => {
|
nonVisionModels.forEach((model) => {
|
||||||
expect(isVisionModel(model)).toBe(false);
|
expect(isVisionModel(model, customVisionModels)).toBe(false);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
test("should identify models from VISION_MODELS env var", () => {
|
test("should identify models from VISION_MODELS env var", () => {
|
||||||
process.env.VISION_MODELS = "custom-vision-model,another-vision-model";
|
process.env.VISION_MODELS = "custom-vision-model,another-vision-model";
|
||||||
|
|
||||||
expect(isVisionModel("custom-vision-model")).toBe(true);
|
expect(isVisionModel("custom-vision-model", customVisionModels)).toBe(true);
|
||||||
expect(isVisionModel("another-vision-model")).toBe(true);
|
expect(isVisionModel("another-vision-model", customVisionModels)).toBe(true);
|
||||||
expect(isVisionModel("unrelated-model")).toBe(false);
|
expect(isVisionModel("custom-vlm", customVisionModels)).toBe(true);
|
||||||
|
expect(isVisionModel("another-vlm", customVisionModels)).toBe(true);
|
||||||
|
expect(isVisionModel("unrelated-model", customVisionModels)).toBe(false);
|
||||||
});
|
});
|
||||||
|
|
||||||
test("should handle empty or missing VISION_MODELS", () => {
|
test("should handle empty or missing VISION_MODELS", () => {
|
||||||
process.env.VISION_MODELS = "";
|
process.env.VISION_MODELS = "";
|
||||||
expect(isVisionModel("unrelated-model")).toBe(false);
|
expect(isVisionModel("unrelated-model", customVisionModels)).toBe(false);
|
||||||
|
|
||||||
delete process.env.VISION_MODELS;
|
delete process.env.VISION_MODELS;
|
||||||
expect(isVisionModel("unrelated-model")).toBe(false);
|
expect(isVisionModel("unrelated-model", customVisionModels)).toBe(false);
|
||||||
expect(isVisionModel("gpt-4-vision")).toBe(true);
|
expect(isVisionModel("gpt-4-vision", customVisionModels)).toBe(true);
|
||||||
});
|
});
|
||||||
});
|
});
|
Loading…
Reference in New Issue
Block a user