新增字节跳动ds模型兼容,新增华为ds模型兼容

This commit is contained in:
wangjianhua 2025-02-28 13:54:14 +08:00
parent 2167076652
commit cf9d088789
30 changed files with 896 additions and 0 deletions

View File

@ -81,3 +81,7 @@ SILICONFLOW_API_KEY=
### siliconflow Api url (optional)
SILICONFLOW_URL=
HUAWEI_URL=
HUAWEI_API_KEY=

View File

@ -15,6 +15,7 @@ import { handle as siliconflowHandler } from "../../siliconflow";
import { handle as xaiHandler } from "../../xai";
import { handle as chatglmHandler } from "../../glm";
import { handle as proxyHandler } from "../../proxy";
import { handle as huaweiHandler } from "../../huawei";
async function handle(
req: NextRequest,
@ -52,6 +53,8 @@ async function handle(
return siliconflowHandler(req, { params });
case ApiPath.OpenAI:
return openaiHandler(req, { params });
case ApiPath.Huawei:
return huaweiHandler(req, { params });
default:
return proxyHandler(req, { params });
}

187
app/api/huawei.ts Normal file
View File

@ -0,0 +1,187 @@
import { getServerSideConfig } from "@/app/config/server";
import {
HUAWEI_BASE_URL,
ApiPath,
ModelProvider,
Huawei,
} from "@/app/constant";
import { prettyObject } from "@/app/utils/format";
import { NextRequest, NextResponse } from "next/server";
import { auth } from "@/app/api/auth";
const serverConfig = getServerSideConfig();
export async function handle(
req: NextRequest,
{ params }: { params: { path: string[] } },
) {
console.log("[Huawei Route] params ", params);
if (req.method === "OPTIONS") {
return NextResponse.json({ body: "OK" }, { status: 200 });
}
const authResult = auth(req, ModelProvider.Huawei);
if (authResult.error) {
return NextResponse.json(authResult, {
status: 401,
});
}
try {
const response = await request(req);
return response;
} catch (e) {
console.error("[Huawei] ", e);
return NextResponse.json(prettyObject(e));
}
}
async function request(req: NextRequest) {
const controller = new AbortController();
let path = `${req.nextUrl.pathname}`.replaceAll(ApiPath.Huawei, "");
const bodyText = await req.text();
const body = JSON.parse(bodyText);
let modelName = body.model as string;
// 先用原始 modelName 获取 charUrl
let baseUrl: string;
let endpoint = "";
if (modelName === "DeepSeek-R1-671B-32K") {
endpoint = "952e4f88-ef93-4398-ae8d-af37f63f0d8e";
}
if (modelName === "DeepSeek-V3-671B-32K") {
endpoint = "fd53915b-8935-48fe-be70-449d76c0fc87";
}
if (modelName === "DeepSeek-R1-671B-8K") {
endpoint = "861b6827-e5ef-4fa6-90d2-5fd1b2975882";
}
if (modelName === "DeepSeek-V3-671B-8K") {
endpoint = "707c01c8-517c-46ca-827a-d0b21c71b074";
}
if (modelName === "DeepSeek-V3-671B-4K") {
endpoint = "f354eacc-a2c5-43b4-a785-e5aadca988b3";
}
if (modelName === "DeepSeek-R1-671B-4K") {
endpoint = "c3cfa9e2-40c9-485f-a747-caae405296ef";
}
let charUrl = HUAWEI_BASE_URL.concat("/")
.concat(endpoint)
.concat("/v1/chat/completions")
.replace(/(?<!:)\/+/g, "/"); // 只替换不在 :// 后面的多个斜杠
console.log(`current charUrl name:${charUrl}`);
baseUrl = charUrl;
// 处理请求体1. 移除 system role 消息 2. 修改 model 名称格式
const modifiedBody = {
messages: body.messages
.map((msg: any) => ({
role: msg.role,
content: msg.content,
}))
.filter((msg: any) => msg.role !== "system"),
model: modelName.replace(/^(DeepSeek-(?:R1|V3)).*$/, "$1"), // 只保留 DeepSeek-R1 或 DeepSeek-V3
stream: body.stream,
temperature: body.temperature,
presence_penalty: body.presence_penalty,
frequency_penalty: body.frequency_penalty,
top_p: body.top_p,
};
const modifiedBodyText = JSON.stringify(modifiedBody);
console.log("Modified request body:", modifiedBodyText);
// if(!baseUrl){
// baseUrl = HUAWEI_BASE_URL
// }
// baseUrl = Huawei.ChatPath(modelName) || serverConfig.huaweiUrl || HUAWEI_BASE_URL;
console.log(
`current model name:${modelName},current api path:${baseUrl}.........`,
);
if (!baseUrl.startsWith("http")) {
baseUrl = `https://${baseUrl}`;
}
if (baseUrl.endsWith("/")) {
baseUrl = baseUrl.slice(0, -1);
}
console.log("[Proxy] ", path);
console.log("[Base Url]", baseUrl);
const timeoutId = setTimeout(
() => {
controller.abort();
},
10 * 60 * 1000,
);
// 如果 baseUrl 来自 Huawei.ChatPath则不需要再拼接 path
let fetchUrl = baseUrl.includes(HUAWEI_BASE_URL)
? baseUrl
: `${baseUrl}${path}`;
const headers: Record<string, string> = {
"Content-Type": "application/json",
Authorization: req.headers.get("Authorization") ?? "",
"X-Forwarded-For": req.headers.get("X-Forwarded-For") ?? "",
"X-Real-IP": req.headers.get("X-Real-IP") ?? "",
"User-Agent": req.headers.get("User-Agent") ?? "",
};
console.debug(`headers.Authorization:${headers.Authorization}`);
console.debug(`serverConfig.huaweiApiKey:${serverConfig.huaweiApiKey}`);
// 如果没有 Authorization header使用系统配置的 API key
headers.Authorization = `Bearer ${serverConfig.huaweiApiKey}`;
// #1815 try to refuse some request to some models
// if (serverConfig.customModels) {
// try {
// const jsonBody = JSON.parse(bodyText); // 直接使用已解析的 body
//
// if (
// isModelNotavailableInServer(
// serverConfig.customModels,
// jsonBody?.model as string,
// ServiceProvider.Huawei as string,
// )
// ) {
// return NextResponse.json(
// {
// error: true,
// message: `you are not allowed to use ${jsonBody?.model} model`,
// },
// {
// status: 403,
// },
// );
// }
// } catch (e) {
// console.error(`[Huawei] filter`, e);
// }
// }
try {
const res = await fetch(fetchUrl, {
headers,
method: req.method,
body: modifiedBodyText,
redirect: "manual",
// @ts-ignore
duplex: "half",
signal: controller.signal,
});
const newHeaders = new Headers(res.headers);
newHeaders.delete("www-authenticate");
// to disable nginx buffering
newHeaders.set("X-Accel-Buffering", "no");
return new Response(res.body, {
status: res.status,
statusText: res.statusText,
headers: newHeaders,
});
} finally {
clearTimeout(timeoutId);
}
}
export { Huawei };

View File

@ -24,6 +24,7 @@ import { DeepSeekApi } from "./platforms/deepseek";
import { XAIApi } from "./platforms/xai";
import { ChatGLMApi } from "./platforms/glm";
import { SiliconflowApi } from "./platforms/siliconflow";
import { HuaweiApi } from "./platforms/huawei";
export const ROLES = ["system", "user", "assistant"] as const;
export type MessageRole = (typeof ROLES)[number];
@ -168,6 +169,9 @@ export class ClientApi {
case ModelProvider.SiliconFlow:
this.llm = new SiliconflowApi();
break;
case ModelProvider.Huawei:
this.llm = new HuaweiApi();
break;
default:
this.llm = new ChatGPTApi();
}
@ -260,6 +264,7 @@ export function getHeaders(ignoreHeaders: boolean = false) {
const isChatGLM = modelConfig.providerName === ServiceProvider.ChatGLM;
const isSiliconFlow =
modelConfig.providerName === ServiceProvider.SiliconFlow;
const isHuawei = modelConfig.providerName == ServiceProvider.Huawei;
const isEnabledAccessControl = accessStore.enabledAccessControl();
const apiKey = isGoogle
? accessStore.googleApiKey
@ -285,6 +290,8 @@ export function getHeaders(ignoreHeaders: boolean = false) {
? accessStore.iflytekApiKey && accessStore.iflytekApiSecret
? accessStore.iflytekApiKey + ":" + accessStore.iflytekApiSecret
: ""
: isHuawei
? accessStore.huaweiApiKey
: accessStore.openaiApiKey;
return {
isGoogle,
@ -299,6 +306,7 @@ export function getHeaders(ignoreHeaders: boolean = false) {
isXAI,
isChatGLM,
isSiliconFlow,
isHuawei,
apiKey,
isEnabledAccessControl,
};
@ -327,6 +335,7 @@ export function getHeaders(ignoreHeaders: boolean = false) {
isXAI,
isChatGLM,
isSiliconFlow,
isHuawei: boolean,
apiKey,
isEnabledAccessControl,
} = getConfig();
@ -377,6 +386,8 @@ export function getClientApi(provider: ServiceProvider): ClientApi {
return new ClientApi(ModelProvider.ChatGLM);
case ServiceProvider.SiliconFlow:
return new ClientApi(ModelProvider.SiliconFlow);
case ServiceProvider.Huawei:
return new ClientApi(ModelProvider.Huawei);
default:
return new ClientApi(ModelProvider.GPT);
}

View File

@ -0,0 +1,200 @@
"use client";
import { ApiPath, HUAWEI_BASE_URL, Huawei } from "@/app/constant";
import {
useAccessStore,
useAppConfig,
useChatStore,
usePluginStore,
ChatMessageTool,
} from "@/app/store";
import {
ChatOptions,
getHeaders,
LLMApi,
LLMModel,
MultimodalContent,
SpeechOptions,
} from "../api";
import { getClientConfig } from "@/app/config/client";
import { getTimeoutMSByModel } from "@/app/utils";
import { streamWithThink } from "@/app/utils/chat";
import { fetch } from "@/app/utils/stream";
interface RequestPayloadForHuawei {
messages: {
role: "system" | "user" | "assistant";
content: string | MultimodalContent[];
}[];
stream?: boolean;
model: string;
temperature: number;
presence_penalty: number;
frequency_penalty: number;
top_p: number;
max_tokens?: number;
}
export class HuaweiApi implements LLMApi {
path(path: string): string {
const accessStore = useAccessStore.getState();
let baseUrl = "";
if (accessStore.useCustomConfig) {
baseUrl = accessStore.huaweiUrl;
}
if (baseUrl.length === 0) {
const isApp = !!getClientConfig()?.isApp;
baseUrl = isApp ? HUAWEI_BASE_URL : ApiPath.Huawei;
}
if (baseUrl.endsWith("/")) {
baseUrl = baseUrl.slice(0, baseUrl.length - 1);
}
if (!baseUrl.startsWith("http") && !baseUrl.startsWith(ApiPath.Huawei)) {
baseUrl = "https://" + baseUrl;
}
console.log("[Proxy Endpoint] ", baseUrl, path);
return [baseUrl, path].join("/");
}
extractMessage(res: any) {
return res.choices?.at(0)?.message?.content ?? "";
}
speech(options: SpeechOptions): Promise<ArrayBuffer> {
throw new Error("Method not implemented.");
}
async chat(options: ChatOptions) {
const messages = options.messages.map((v) => ({
role: v.role,
content: v.content,
}));
const modelConfig = {
...useAppConfig.getState().modelConfig,
...useChatStore.getState().currentSession().mask.modelConfig,
...{
model: options.config.model,
},
};
const requestPayload: RequestPayloadForHuawei = {
messages,
stream: options.config.stream,
model: modelConfig.model,
temperature: modelConfig.temperature,
presence_penalty: modelConfig.presence_penalty,
frequency_penalty: modelConfig.frequency_penalty,
top_p: modelConfig.top_p,
};
const shouldStream = !!options.config.stream;
const controller = new AbortController();
options.onController?.(controller);
try {
const chatPath = this.path(Huawei.ChatPath);
const chatPayload = {
method: "POST",
body: JSON.stringify(requestPayload),
signal: controller.signal,
headers: getHeaders(),
};
const requestTimeoutId = setTimeout(
() => controller.abort(),
getTimeoutMSByModel(options.config.model),
);
if (shouldStream) {
const [tools, funcs] = usePluginStore
.getState()
.getAsTools(
useChatStore.getState().currentSession().mask?.plugin || [],
);
return streamWithThink(
chatPath,
requestPayload,
getHeaders(),
tools as any[],
funcs,
controller,
// parseSSE
(text: string, runTools: ChatMessageTool[]) => {
const json = JSON.parse(text);
const choices = json.choices as Array<{
delta: {
content: string;
tool_calls: ChatMessageTool[];
};
}>;
const tool_calls = choices[0]?.delta?.tool_calls;
if (tool_calls?.length > 0) {
const index = tool_calls[0]?.index;
const id = tool_calls[0]?.id;
const args = tool_calls[0]?.function?.arguments;
if (id) {
runTools.push({
id,
type: tool_calls[0]?.type,
function: {
name: tool_calls[0]?.function?.name as string,
arguments: args,
},
});
} else {
// @ts-ignore
runTools[index]["function"]["arguments"] += args;
}
}
return {
isThinking: false,
content: choices[0]?.delta?.content || "",
};
},
// processToolMessage
(
payload: RequestPayloadForHuawei,
toolCallMessage: any,
toolCallResult: any[],
) => {
payload?.messages?.splice(
payload?.messages?.length,
0,
toolCallMessage,
...toolCallResult,
);
},
options,
);
} else {
const res = await fetch(chatPath, chatPayload);
clearTimeout(requestTimeoutId);
const resJson = await res.json();
const message = this.extractMessage(resJson);
options.onFinish(message, res);
}
} catch (e) {
console.log("[Request] failed to make a chat request", e);
options.onError?.(e as Error);
}
}
async usage() {
return {
used: 0,
total: 0,
};
}
async models(): Promise<LLMModel[]> {
return [];
}
}

View File

@ -75,6 +75,7 @@ import {
ChatGLM,
DeepSeek,
SiliconFlow,
Huawei,
} from "../constant";
import { Prompt, SearchService, usePromptStore } from "../store/prompt";
import { ErrorBoundary } from "./error";
@ -1457,6 +1458,46 @@ export function Settings() {
</ListItem>
</>
);
const huaweiConfigComponent = accessStore.provider ===
ServiceProvider.Huawei && (
<>
<ListItem
title={Locale.Settings.Access.Huawei.Endpoint.Title}
subTitle={
Locale.Settings.Access.Huawei.Endpoint.SubTitle +
Huawei.ExampleEndpoint
}
>
<input
aria-label={Locale.Settings.Access.Huawei.Endpoint.Title}
type="text"
value={accessStore.huaweiUrl}
placeholder={Huawei.ExampleEndpoint}
onChange={(e) =>
accessStore.update(
(access) => (access.huaweiUrl = e.currentTarget.value),
)
}
></input>
</ListItem>
<ListItem
title={Locale.Settings.Access.Huawei.ApiKey.Title}
subTitle={Locale.Settings.Access.Huawei.ApiKey.SubTitle}
>
<PasswordInput
aria-label={Locale.Settings.Access.Huawei.ApiKey.Title}
value={accessStore.deepseekApiKey}
type="text"
placeholder={Locale.Settings.Access.Huawei.ApiKey.Placeholder}
onChange={(e) => {
accessStore.update(
(access) => (access.huaweiApiKey = e.currentTarget.value),
);
}}
/>
</ListItem>
</>
);
return (
<ErrorBoundary>
@ -1822,6 +1863,7 @@ export function Settings() {
{XAIConfigComponent}
{chatglmConfigComponent}
{siliconflowConfigComponent}
{huaweiConfigComponent}
</>
)}
</>

View File

@ -88,6 +88,10 @@ declare global {
SILICONFLOW_URL?: string;
SILICONFLOW_API_KEY?: string;
//huaweionly
HUAWEI_URL?: string;
HUAWEI_API_KEY?: string;
// custom template for preprocessing user input
DEFAULT_INPUT_TEMPLATE?: string;
@ -163,6 +167,7 @@ export const getServerSideConfig = () => {
const isXAI = !!process.env.XAI_API_KEY;
const isChatGLM = !!process.env.CHATGLM_API_KEY;
const isSiliconFlow = !!process.env.SILICONFLOW_API_KEY;
const isHuawei = !!process.env.HUAWEI_API_KEY;
// const apiKeyEnvVar = process.env.OPENAI_API_KEY ?? "";
// const apiKeys = apiKeyEnvVar.split(",").map((v) => v.trim());
// const randomIndex = Math.floor(Math.random() * apiKeys.length);
@ -233,6 +238,10 @@ export const getServerSideConfig = () => {
xaiUrl: process.env.XAI_URL,
xaiApiKey: getApiKey(process.env.XAI_API_KEY),
isHuawei,
huaweiUrl: process.env.HUAWEI_URL,
huaweiApiKey: getApiKey(process.env.HUAWEI_API_KEY),
isChatGLM,
chatglmUrl: process.env.CHATGLM_URL,
chatglmApiKey: getApiKey(process.env.CHATGLM_API_KEY),

View File

@ -36,6 +36,9 @@ export const CHATGLM_BASE_URL = "https://open.bigmodel.cn";
export const SILICONFLOW_BASE_URL = "https://api.siliconflow.cn";
export const HUAWEI_BASE_URL =
"https://infer-modelarts-cn-southwest-2.modelarts-infer.com/v1/infers";
export const CACHE_URL_PREFIX = "/api/cache";
export const UPLOAD_URL = `${CACHE_URL_PREFIX}/upload`;
@ -72,6 +75,7 @@ export enum ApiPath {
ChatGLM = "/api/chatglm",
DeepSeek = "/api/deepseek",
SiliconFlow = "/api/siliconflow",
Huawei = "/api/huawei",
}
export enum SlotID {
@ -130,6 +134,7 @@ export enum ServiceProvider {
ChatGLM = "ChatGLM",
DeepSeek = "DeepSeek",
SiliconFlow = "SiliconFlow",
Huawei = "Huawei",
}
// Google API safety settings, see https://ai.google.dev/gemini-api/docs/safety-settings
@ -156,6 +161,7 @@ export enum ModelProvider {
ChatGLM = "ChatGLM",
DeepSeek = "DeepSeek",
SiliconFlow = "SiliconFlow",
Huawei = "Huawei",
}
export const Stability = {
@ -214,6 +220,11 @@ export const Baidu = {
},
};
export const Huawei = {
ExampleEndpoint: HUAWEI_BASE_URL,
ChatPath: "/v1/chat/completions",
};
export const ByteDance = {
ExampleEndpoint: "https://ark.cn-beijing.volces.com/api/",
ChatPath: "api/v3/chat/completions",
@ -560,6 +571,10 @@ const bytedanceModels = [
"Doubao-pro-4k",
"Doubao-pro-32k",
"Doubao-pro-128k",
"deepseek-r1-250120",
"deepseek-v3-241226",
"deepseek-r1-distill-qwen-7b-250120",
"deepseek-r1-distill-qwen-32b-250120",
];
const alibabaModes = [
@ -642,6 +657,22 @@ const siliconflowModels = [
"Pro/deepseek-ai/DeepSeek-V3",
];
const huaweiModels = [
//https://infer-modelarts-cn-southwest-2.modelarts-infer.com/v1/infers/952e4f88-ef93-4398-ae8d-af37f63f0d8e/v1/chat/completions
"DeepSeek-R1-671B-32K",
//https://infer-modelarts-cn-southwest-2.modelarts-infer.com/v1/infers/fd53915b-8935-48fe-be70-449d76c0fc87/v1/chat/completions
"DeepSeek-V3-671B-32K",
//以下为8k 上面为32k
//https://infer-modelarts-cn-southwest-2.modelarts-infer.com/v1/infers/861b6827-e5ef-4fa6-90d2-5fd1b2975882/v1/chat/completions
"DeepSeek-R1-671B-8K",
//https://infer-modelarts-cn-southwest-2.modelarts-infer.com/v1/infers/707c01c8-517c-46ca-827a-d0b21c71b074/v1/chat/completions
"DeepSeek-V3-671B-8K",
//https://infer-modelarts-cn-southwest-2.modelarts-infer.com/v1/infers/f354eacc-a2c5-43b4-a785-e5aadca988b3/v1/chat/completions
"DeepSeek-V3-671B-4K",
//https://infer-modelarts-cn-southwest-2.modelarts-infer.com/v1/infers/c3cfa9e2-40c9-485f-a747-caae405296ef/v1/chat/completions
"DeepSeek-R1-671B-4K",
];
let seq = 1000; // 内置的模型序号生成器从1000开始
export const DEFAULT_MODELS = [
...openaiModels.map((name) => ({
@ -798,6 +829,17 @@ export const DEFAULT_MODELS = [
sorted: 14,
},
})),
...huaweiModels.map((name) => ({
name,
available: true,
sorted: seq++,
provider: {
id: "huawei",
providerName: "Huawei",
providerType: "Huawei",
sorted: 15,
},
})),
] as const;
export const CHAT_PAGE_SIZE = 15;

View File

@ -420,6 +420,22 @@ const ar: PartialLocaleType = {
Title: "اسم النموذج المخصص",
SubTitle: "أضف خيارات نموذج مخصص، مفصولة بفواصل إنجليزية",
},
Huawei: {
ApiKey: {
Title: "API Key",
SubTitle: "使用自定义华为API Key",
Placeholder: "HUAWEI Key",
},
SecretKey: {
Title: "Secret Key",
SubTitle: "使用自定义HUAWEI Secret Key",
Placeholder: "HUAWEI Secret Key",
},
Endpoint: {
Title: "接口地址",
SubTitle: "不支持自定义前往.env配置",
},
},
},
Model: "النموذج",

View File

@ -428,6 +428,22 @@ const bn: PartialLocaleType = {
SubTitle:
"স্বনির্ধারিত মডেল বিকল্পগুলি যুক্ত করুন, ইংরেজি কমা দ্বারা আলাদা করুন",
},
Huawei: {
ApiKey: {
Title: "API Key",
SubTitle: "使用自定义华为API Key",
Placeholder: "HUAWEI Key",
},
SecretKey: {
Title: "Secret Key",
SubTitle: "使用自定义HUAWEI Secret Key",
Placeholder: "HUAWEI Secret Key",
},
Endpoint: {
Title: "接口地址",
SubTitle: "不支持自定义前往.env配置",
},
},
},
Model: "মডেল (model)",

View File

@ -538,6 +538,22 @@ const cn = {
Title: "自定义模型名",
SubTitle: "增加自定义模型可选项,使用英文逗号隔开",
},
Huawei: {
ApiKey: {
Title: "API Key",
SubTitle: "使用自定义华为API Key",
Placeholder: "HUAWEI Key",
},
SecretKey: {
Title: "Secret Key",
SubTitle: "使用自定义HUAWEI Secret Key",
Placeholder: "HUAWEI Secret Key",
},
Endpoint: {
Title: "接口地址",
SubTitle: "不支持自定义前往.env配置",
},
},
},
Model: "模型 (model)",

View File

@ -427,6 +427,22 @@ const cs: PartialLocaleType = {
Title: "Vlastní názvy modelů",
SubTitle: "Přidejte možnosti vlastních modelů, oddělené čárkami",
},
Huawei: {
ApiKey: {
Title: "API Key",
SubTitle: "使用自定义华为API Key",
Placeholder: "HUAWEI Key",
},
SecretKey: {
Title: "Secret Key",
SubTitle: "使用自定义HUAWEI Secret Key",
Placeholder: "HUAWEI Secret Key",
},
Endpoint: {
Title: "接口地址",
SubTitle: "不支持自定义前往.env配置",
},
},
},
Model: "Model (model)",

View File

@ -498,6 +498,22 @@ const da: PartialLocaleType = {
Title: "Egne modelnavne",
SubTitle: "Skriv komma-adskilte navne",
},
Huawei: {
ApiKey: {
Title: "API Key",
SubTitle: "使用自定义华为API Key",
Placeholder: "HUAWEI Key",
},
SecretKey: {
Title: "Secret Key",
SubTitle: "使用自定义HUAWEI Secret Key",
Placeholder: "HUAWEI Secret Key",
},
Endpoint: {
Title: "接口地址",
SubTitle: "不支持自定义前往.env配置",
},
},
Google: {
ApiKey: {
Title: "Google-nøgle",

View File

@ -439,6 +439,22 @@ const de: PartialLocaleType = {
SubTitle:
"Fügen Sie benutzerdefinierte Modelloptionen hinzu, getrennt durch Kommas",
},
Huawei: {
ApiKey: {
Title: "API Key",
SubTitle: "使用自定义华为API Key",
Placeholder: "HUAWEI Key",
},
SecretKey: {
Title: "Secret Key",
SubTitle: "使用自定义HUAWEI Secret Key",
Placeholder: "HUAWEI Secret Key",
},
Endpoint: {
Title: "接口地址",
SubTitle: "不支持自定义前往.env配置",
},
},
},
Model: "Modell",

View File

@ -522,6 +522,22 @@ const en: LocaleType = {
Title: "Custom Models",
SubTitle: "Custom model options, seperated by comma",
},
Huawei: {
ApiKey: {
Title: "API Key",
SubTitle: "使用自定义华为API Key",
Placeholder: "HUAWEI Key",
},
SecretKey: {
Title: "Secret Key",
SubTitle: "使用自定义HUAWEI Secret Key",
Placeholder: "HUAWEI Secret Key",
},
Endpoint: {
Title: "接口地址",
SubTitle: "不支持自定义前往.env配置",
},
},
Google: {
ApiKey: {
Title: "API Key",

View File

@ -441,6 +441,22 @@ const es: PartialLocaleType = {
SubTitle:
"Agrega opciones de modelos personalizados, separados por comas",
},
Huawei: {
ApiKey: {
Title: "API Key",
SubTitle: "使用自定义华为API Key",
Placeholder: "HUAWEI Key",
},
SecretKey: {
Title: "Secret Key",
SubTitle: "使用自定义HUAWEI Secret Key",
Placeholder: "HUAWEI Secret Key",
},
Endpoint: {
Title: "接口地址",
SubTitle: "不支持自定义前往.env配置",
},
},
},
Model: "Modelo (model)",

View File

@ -440,6 +440,22 @@ const fr: PartialLocaleType = {
SubTitle:
"Ajouter des options de modèles personnalisés, séparées par des virgules",
},
Huawei: {
ApiKey: {
Title: "API Key",
SubTitle: "使用自定义华为API Key",
Placeholder: "HUAWEI Key",
},
SecretKey: {
Title: "Secret Key",
SubTitle: "使用自定义HUAWEI Secret Key",
Placeholder: "HUAWEI Secret Key",
},
Endpoint: {
Title: "接口地址",
SubTitle: "不支持自定义前往.env配置",
},
},
},
Model: "Modèle",

View File

@ -428,6 +428,22 @@ const id: PartialLocaleType = {
Title: "Nama Model Kustom",
SubTitle: "Tambahkan opsi model kustom, pisahkan dengan koma",
},
Huawei: {
ApiKey: {
Title: "API Key",
SubTitle: "使用自定义华为API Key",
Placeholder: "HUAWEI Key",
},
SecretKey: {
Title: "Secret Key",
SubTitle: "使用自定义HUAWEI Secret Key",
Placeholder: "HUAWEI Secret Key",
},
Endpoint: {
Title: "接口地址",
SubTitle: "不支持自定义前往.env配置",
},
},
},
Model: "Model",

View File

@ -441,6 +441,22 @@ const it: PartialLocaleType = {
SubTitle:
"Aggiungi opzioni di modelli personalizzati, separati da virgole",
},
Huawei: {
ApiKey: {
Title: "API Key",
SubTitle: "使用自定义华为API Key",
Placeholder: "HUAWEI Key",
},
SecretKey: {
Title: "Secret Key",
SubTitle: "使用自定义HUAWEI Secret Key",
Placeholder: "HUAWEI Secret Key",
},
Endpoint: {
Title: "接口地址",
SubTitle: "不支持自定义前往.env配置",
},
},
},
Model: "Modello (model)",

View File

@ -424,6 +424,22 @@ const jp: PartialLocaleType = {
Title: "カスタムモデル名",
SubTitle: "カスタムモデルの選択肢を追加、英語のカンマで区切る",
},
Huawei: {
ApiKey: {
Title: "API Key",
SubTitle: "使用自定义华为API Key",
Placeholder: "HUAWEI Key",
},
SecretKey: {
Title: "Secret Key",
SubTitle: "使用自定义HUAWEI Secret Key",
Placeholder: "HUAWEI Secret Key",
},
Endpoint: {
Title: "接口地址",
SubTitle: "不支持自定义前往.env配置",
},
},
},
Model: "モデル (model)",

View File

@ -421,6 +421,22 @@ const ko: PartialLocaleType = {
Title: "커스텀 모델 이름",
SubTitle: "커스텀 모델 옵션 추가, 영어 쉼표로 구분",
},
Huawei: {
ApiKey: {
Title: "API Key",
SubTitle: "使用自定义华为API Key",
Placeholder: "HUAWEI Key",
},
SecretKey: {
Title: "Secret Key",
SubTitle: "使用自定义HUAWEI Secret Key",
Placeholder: "HUAWEI Secret Key",
},
Endpoint: {
Title: "接口地址",
SubTitle: "不支持自定义前往.env配置",
},
},
},
Model: "모델 (model)",

View File

@ -433,6 +433,22 @@ const no: PartialLocaleType = {
Title: "Egendefinert modellnavn",
SubTitle: "Legg til egendefinerte modellalternativer, skill med komma",
},
Huawei: {
ApiKey: {
Title: "API Key",
SubTitle: "使用自定义华为API Key",
Placeholder: "HUAWEI Key",
},
SecretKey: {
Title: "Secret Key",
SubTitle: "使用自定义HUAWEI Secret Key",
Placeholder: "HUAWEI Secret Key",
},
Endpoint: {
Title: "接口地址",
SubTitle: "不支持自定义前往.env配置",
},
},
},
Model: "Modell",

View File

@ -363,6 +363,22 @@ const pt: PartialLocaleType = {
Title: "Modelos Personalizados",
SubTitle: "Opções de modelo personalizado, separados por vírgula",
},
Huawei: {
ApiKey: {
Title: "API Key",
SubTitle: "使用自定义华为API Key",
Placeholder: "HUAWEI Key",
},
SecretKey: {
Title: "Secret Key",
SubTitle: "使用自定义HUAWEI Secret Key",
Placeholder: "HUAWEI Secret Key",
},
Endpoint: {
Title: "接口地址",
SubTitle: "不支持自定义前往.env配置",
},
},
},
Model: "Modelo",

View File

@ -431,6 +431,22 @@ const ru: PartialLocaleType = {
SubTitle:
"Добавьте варианты пользовательских моделей, разделяя запятыми",
},
Huawei: {
ApiKey: {
Title: "API Key",
SubTitle: "使用自定义华为API Key",
Placeholder: "HUAWEI Key",
},
SecretKey: {
Title: "Secret Key",
SubTitle: "使用自定义HUAWEI Secret Key",
Placeholder: "HUAWEI Secret Key",
},
Endpoint: {
Title: "接口地址",
SubTitle: "不支持自定义前往.env配置",
},
},
},
Model: "Модель",

View File

@ -363,6 +363,22 @@ const sk: PartialLocaleType = {
Title: "Vlastné modely",
SubTitle: "Možnosti vlastného modelu, oddelené čiarkou",
},
Huawei: {
ApiKey: {
Title: "API Key",
SubTitle: "使用自定义华为API Key",
Placeholder: "HUAWEI Key",
},
SecretKey: {
Title: "Secret Key",
SubTitle: "使用自定义HUAWEI Secret Key",
Placeholder: "HUAWEI Secret Key",
},
Endpoint: {
Title: "接口地址",
SubTitle: "不支持自定义前往.env配置",
},
},
Google: {
ApiKey: {
Title: "API kľúč",

View File

@ -431,6 +431,22 @@ const tr: PartialLocaleType = {
SubTitle:
"Özelleştirilmiş model seçenekleri ekleyin, İngilizce virgül ile ayırın",
},
Huawei: {
ApiKey: {
Title: "API Key",
SubTitle: "使用自定义华为API Key",
Placeholder: "HUAWEI Key",
},
SecretKey: {
Title: "Secret Key",
SubTitle: "使用自定义HUAWEI Secret Key",
Placeholder: "HUAWEI Secret Key",
},
Endpoint: {
Title: "接口地址",
SubTitle: "不支持自定义前往.env配置",
},
},
},
Model: "Model (model)",

View File

@ -386,6 +386,22 @@ const tw = {
Title: "自訂模型名稱",
SubTitle: "增加自訂模型可選擇項目,使用英文逗號隔開",
},
Huawei: {
ApiKey: {
Title: "API Key",
SubTitle: "使用自定义华为API Key",
Placeholder: "HUAWEI Key",
},
SecretKey: {
Title: "Secret Key",
SubTitle: "使用自定义HUAWEI Secret Key",
Placeholder: "HUAWEI Secret Key",
},
Endpoint: {
Title: "接口地址",
SubTitle: "不支持自定义前往.env配置",
},
},
},
Model: "模型 (model)",

View File

@ -427,6 +427,22 @@ const vi: PartialLocaleType = {
SubTitle:
"Thêm tùy chọn mô hình tùy chỉnh, sử dụng dấu phẩy để phân cách",
},
Huawei: {
ApiKey: {
Title: "API Key",
SubTitle: "使用自定义华为API Key",
Placeholder: "HUAWEI Key",
},
SecretKey: {
Title: "Secret Key",
SubTitle: "使用自定义HUAWEI Secret Key",
Placeholder: "HUAWEI Secret Key",
},
Endpoint: {
Title: "接口地址",
SubTitle: "不支持自定义前往.env配置",
},
},
},
Model: "Mô hình (model)",

View File

@ -17,6 +17,7 @@ import {
XAI_BASE_URL,
CHATGLM_BASE_URL,
SILICONFLOW_BASE_URL,
HUAWEI_BASE_URL,
} from "../constant";
import { getHeaders } from "../client/api";
import { getClientConfig } from "../config/client";
@ -55,6 +56,8 @@ const DEFAULT_XAI_URL = isApp ? XAI_BASE_URL : ApiPath.XAI;
const DEFAULT_CHATGLM_URL = isApp ? CHATGLM_BASE_URL : ApiPath.ChatGLM;
const DEFAULT_HUAWEI_URL = isApp ? HUAWEI_BASE_URL : ApiPath.Huawei;
const DEFAULT_SILICONFLOW_URL = isApp
? SILICONFLOW_BASE_URL
: ApiPath.SiliconFlow;
@ -131,6 +134,9 @@ const DEFAULT_ACCESS_STATE = {
// siliconflow
siliconflowUrl: DEFAULT_SILICONFLOW_URL,
siliconflowApiKey: "",
// huawei
huaweiUrl: DEFAULT_HUAWEI_URL,
huaweiApiKey: "",
// server config
needCode: true,
@ -219,6 +225,9 @@ export const useAccessStore = createPersistStore(
return ensure(get(), ["siliconflowApiKey"]);
},
isValidHuawei() {
return ensure(get(), ["huaweiApiKey"]);
},
isAuthorized() {
this.fetch();
@ -238,6 +247,7 @@ export const useAccessStore = createPersistStore(
this.isValidXAI() ||
this.isValidChatGLM() ||
this.isValidSiliconFlow() ||
this.isValidHuawei() ||
!this.enabledAccessControl() ||
(this.enabledAccessControl() && ensure(get(), ["accessCode"]))
);

View File

@ -17,6 +17,40 @@ services:
- ENABLE_BALANCE_QUERY=$ENABLE_BALANCE_QUERY
- DISABLE_FAST_LINK=$DISABLE_FAST_LINK
- OPENAI_SB=$OPENAI_SB
- SILICONFLOW_URL=$SILICONFLOW_API_KEY
- SILICONFLOW_URL=$SILICONFLOW_URL
- AZURE_URL=$AZURE_URL
- AZURE_API_KEY=$AZURE_API_KEY
- AZURE_API_VERSION=$AZURE_API_VERSION
- GOOGLE_URL=$GOOGLE_URL
- GTM_ID=$GTM_ID
- ANTHROPIC_URL=$ANTHROPIC_URL
- ANTHROPIC_API_KEY=$ANTHROPIC_API_KEY
- ANTHROPIC_API_VERSION=$ANTHROPIC_API_VERSION
- BAIDU_URL=$BAIDU_URL
- BAIDU_API_KEY=$BAIDU_API_KEY
- BAIDU_SECRET_KEY=$BAIDU_SECRET_KEY
- BYTEDANCE_URL=$BYTEDANCE_URL
- BYTEDANCE_API_KEY=$BYTEDANCE_API_KEY
- ALIBABA_URL=$ALIBABA_URL
- ALIBABA_API_KEY=$ALIBABA_API_KEY
- TENCENT_URL=$TENCENT_URL
- TENCENT_SECRET_KEY=$TENCENT_SECRET_KEY
- TENCENT_SECRET_ID=$TENCENT_SECRET_ID
- MOONSHOT_URL=$MOONSHOT_URL
- MOONSHOT_API_KEY=$MOONSHOT_API_KEY
- IFLYTEK_URL=$IFLYTEK_URL
- IFLYTEK_API_KEY=$IFLYTEK_API_KEY
- IFLYTEK_API_SECRET=$IFLYTEK_API_SECRET
- DEEPSEEK_URL=$DEEPSEEK_URL
- DEEPSEEK_API_KEY=$DEEPSEEK_API_KEY
- XAI_URL=$XAI_URL
- XAI_API_KEY=$XAI_API_KEY
- CHATGLM_URL=$CHATGLM_URL
- CHATGLM_API_KEY=$CHATGLM_API_KEY
- DEFAULT_INPUT_TEMPLATE=$DEFAULT_INPUT_TEMPLATE
- HUAWEI_API_KEY=$HUAWEI_API_KEY
- HUAWEI_URL=$HUAWEI_URL
chatgpt-next-web-proxy:
profiles: [ "proxy" ]
@ -36,3 +70,37 @@ services:
- ENABLE_BALANCE_QUERY=$ENABLE_BALANCE_QUERY
- DISABLE_FAST_LINK=$DISABLE_FAST_LINK
- OPENAI_SB=$OPENAI_SB
- SILICONFLOW_URL=$SILICONFLOW_API_KEY
- SILICONFLOW_URL=$SILICONFLOW_URL
- AZURE_URL=$AZURE_URL
- AZURE_API_KEY=$AZURE_API_KEY
- AZURE_API_VERSION=$AZURE_API_VERSION
- GOOGLE_URL=$GOOGLE_URL
- GTM_ID=$GTM_ID
- ANTHROPIC_URL=$ANTHROPIC_URL
- ANTHROPIC_API_KEY=$ANTHROPIC_API_KEY
- ANTHROPIC_API_VERSION=$ANTHROPIC_API_VERSION
- BAIDU_URL=$BAIDU_URL
- BAIDU_API_KEY=$BAIDU_API_KEY
- BAIDU_SECRET_KEY=$BAIDU_SECRET_KEY
- BYTEDANCE_URL=$BYTEDANCE_URL
- BYTEDANCE_API_KEY=$BYTEDANCE_API_KEY
- ALIBABA_URL=$ALIBABA_URL
- ALIBABA_API_KEY=$ALIBABA_API_KEY
- TENCENT_URL=$TENCENT_URL
- TENCENT_SECRET_KEY=$TENCENT_SECRET_KEY
- TENCENT_SECRET_ID=$TENCENT_SECRET_ID
- MOONSHOT_URL=$MOONSHOT_URL
- MOONSHOT_API_KEY=$MOONSHOT_API_KEY
- IFLYTEK_URL=$IFLYTEK_URL
- IFLYTEK_API_KEY=$IFLYTEK_API_KEY
- IFLYTEK_API_SECRET=$IFLYTEK_API_SECRET
- DEEPSEEK_URL=$DEEPSEEK_URL
- DEEPSEEK_API_KEY=$DEEPSEEK_API_KEY
- XAI_URL=$XAI_URL
- XAI_API_KEY=$XAI_API_KEY
- CHATGLM_URL=$CHATGLM_URL
- CHATGLM_API_KEY=$CHATGLM_API_KEY
- DEFAULT_INPUT_TEMPLATE=$DEFAULT_INPUT_TEMPLATE
- HUAWEI_API_KEY=$HUAWEI_API_KEY
- HUAWEI_URL=$HUAWEI_URL