mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-11-23 09:16:49 +08:00
Compare commits
12 Commits
dependabot
...
3062f0beb8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3062f0beb8 | ||
|
|
201fd5a540 | ||
|
|
c3648a376f | ||
|
|
62d50e916e | ||
|
|
bb84a816b2 | ||
|
|
18e2ab0dea | ||
|
|
60fe83a412 | ||
|
|
334fff6241 | ||
|
|
bc34792494 | ||
|
|
b49910ad59 | ||
|
|
bd1a39b0de | ||
|
|
cf9d088789 |
@@ -87,3 +87,7 @@ AI302_API_KEY=
|
||||
|
||||
### 302.AI Api url (optional)
|
||||
AI302_URL=
|
||||
|
||||
HUAWEI_URL=
|
||||
|
||||
HUAWEI_API_KEY=
|
||||
|
||||
@@ -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";
|
||||
import { handle as ai302Handler } from "../../302ai";
|
||||
|
||||
async function handle(
|
||||
@@ -53,6 +54,8 @@ async function handle(
|
||||
return siliconflowHandler(req, { params });
|
||||
case ApiPath.OpenAI:
|
||||
return openaiHandler(req, { params });
|
||||
case ApiPath.Huawei:
|
||||
return huaweiHandler(req, { params });
|
||||
case ApiPath["302.AI"]:
|
||||
return ai302Handler(req, { params });
|
||||
default:
|
||||
|
||||
176
app/api/huawei.ts
Normal file
176
app/api/huawei.ts
Normal file
@@ -0,0 +1,176 @@
|
||||
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-V3") {
|
||||
endpoint = "271c9332-4aa6-4ff5-95b3-0cf8bd94c394";
|
||||
}
|
||||
if (modelName === "DeepSeek-R1") {
|
||||
endpoint = "8a062fd4-7367-4ab4-a936-5eeb8fb821c4";
|
||||
}
|
||||
|
||||
|
||||
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: *****");
|
||||
// 如果没有 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 };
|
||||
@@ -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";
|
||||
import { Ai302Api } from "./platforms/ai302";
|
||||
|
||||
export const ROLES = ["system", "user", "assistant"] as const;
|
||||
@@ -174,6 +175,9 @@ export class ClientApi {
|
||||
case ModelProvider.SiliconFlow:
|
||||
this.llm = new SiliconflowApi();
|
||||
break;
|
||||
case ModelProvider.Huawei:
|
||||
this.llm = new HuaweiApi();
|
||||
break;
|
||||
case ModelProvider["302.AI"]:
|
||||
this.llm = new Ai302Api();
|
||||
break;
|
||||
@@ -269,6 +273,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 isAI302 = modelConfig.providerName === ServiceProvider["302.AI"];
|
||||
const isEnabledAccessControl = accessStore.enabledAccessControl();
|
||||
const apiKey = isGoogle
|
||||
@@ -295,6 +300,8 @@ export function getHeaders(ignoreHeaders: boolean = false) {
|
||||
? accessStore.iflytekApiKey && accessStore.iflytekApiSecret
|
||||
? accessStore.iflytekApiKey + ":" + accessStore.iflytekApiSecret
|
||||
: ""
|
||||
: isHuawei
|
||||
? accessStore.huaweiApiKey
|
||||
: isAI302
|
||||
? accessStore.ai302ApiKey
|
||||
: accessStore.openaiApiKey;
|
||||
@@ -311,6 +318,7 @@ export function getHeaders(ignoreHeaders: boolean = false) {
|
||||
isXAI,
|
||||
isChatGLM,
|
||||
isSiliconFlow,
|
||||
isHuawei,
|
||||
isAI302,
|
||||
apiKey,
|
||||
isEnabledAccessControl,
|
||||
@@ -340,6 +348,7 @@ export function getHeaders(ignoreHeaders: boolean = false) {
|
||||
isXAI,
|
||||
isChatGLM,
|
||||
isSiliconFlow,
|
||||
isHuawei: boolean,
|
||||
isAI302,
|
||||
apiKey,
|
||||
isEnabledAccessControl,
|
||||
@@ -391,6 +400,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);
|
||||
case ServiceProvider["302.AI"]:
|
||||
return new ClientApi(ModelProvider["302.AI"]);
|
||||
default:
|
||||
|
||||
200
app/client/platforms/huawei.ts
Normal file
200
app/client/platforms/huawei.ts
Normal 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 [];
|
||||
}
|
||||
}
|
||||
@@ -76,6 +76,7 @@ import {
|
||||
DeepSeek,
|
||||
SiliconFlow,
|
||||
AI302,
|
||||
Huawei,
|
||||
} from "../constant";
|
||||
import { Prompt, SearchService, usePromptStore } from "../store/prompt";
|
||||
import { ErrorBoundary } from "./error";
|
||||
@@ -1498,6 +1499,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.huaweiApiKey}
|
||||
type="text"
|
||||
placeholder={Locale.Settings.Access.Huawei.ApiKey.Placeholder}
|
||||
onChange={(e) => {
|
||||
accessStore.update(
|
||||
(access) => (access.huaweiApiKey = e.currentTarget.value),
|
||||
);
|
||||
}}
|
||||
/>
|
||||
</ListItem>
|
||||
</>
|
||||
);
|
||||
|
||||
return (
|
||||
<ErrorBoundary>
|
||||
@@ -1863,6 +1904,7 @@ export function Settings() {
|
||||
{XAIConfigComponent}
|
||||
{chatglmConfigComponent}
|
||||
{siliconflowConfigComponent}
|
||||
{huaweiConfigComponent}
|
||||
{ai302ConfigComponent}
|
||||
</>
|
||||
)}
|
||||
|
||||
@@ -88,6 +88,10 @@ declare global {
|
||||
SILICONFLOW_URL?: string;
|
||||
SILICONFLOW_API_KEY?: string;
|
||||
|
||||
//huaweionly
|
||||
HUAWEI_URL?: string;
|
||||
HUAWEI_API_KEY?: string;
|
||||
|
||||
// 302.AI only
|
||||
AI302_URL?: string;
|
||||
AI302_API_KEY?: string;
|
||||
@@ -168,6 +172,7 @@ export const getServerSideConfig = () => {
|
||||
const isChatGLM = !!process.env.CHATGLM_API_KEY;
|
||||
const isSiliconFlow = !!process.env.SILICONFLOW_API_KEY;
|
||||
const isAI302 = !!process.env.AI302_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);
|
||||
@@ -238,6 +243,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),
|
||||
|
||||
@@ -38,6 +38,9 @@ export const SILICONFLOW_BASE_URL = "https://api.siliconflow.cn";
|
||||
|
||||
export const AI302_BASE_URL = "https://api.302.ai";
|
||||
|
||||
export const HUAWEI_BASE_URL =
|
||||
"https://maas-cn-southwest-2.modelarts-maas.com/v1/infers";
|
||||
|
||||
export const CACHE_URL_PREFIX = "/api/cache";
|
||||
export const UPLOAD_URL = `${CACHE_URL_PREFIX}/upload`;
|
||||
|
||||
@@ -74,6 +77,7 @@ export enum ApiPath {
|
||||
ChatGLM = "/api/chatglm",
|
||||
DeepSeek = "/api/deepseek",
|
||||
SiliconFlow = "/api/siliconflow",
|
||||
Huawei = "/api/huawei",
|
||||
"302.AI" = "/api/302ai",
|
||||
}
|
||||
|
||||
@@ -133,6 +137,7 @@ export enum ServiceProvider {
|
||||
ChatGLM = "ChatGLM",
|
||||
DeepSeek = "DeepSeek",
|
||||
SiliconFlow = "SiliconFlow",
|
||||
Huawei = "Huawei",
|
||||
"302.AI" = "302.AI",
|
||||
}
|
||||
|
||||
@@ -160,6 +165,7 @@ export enum ModelProvider {
|
||||
ChatGLM = "ChatGLM",
|
||||
DeepSeek = "DeepSeek",
|
||||
SiliconFlow = "SiliconFlow",
|
||||
Huawei = "Huawei",
|
||||
"302.AI" = "302.AI",
|
||||
}
|
||||
|
||||
@@ -219,6 +225,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",
|
||||
@@ -604,6 +615,11 @@ const bytedanceModels = [
|
||||
"Doubao-pro-4k",
|
||||
"Doubao-pro-32k",
|
||||
"Doubao-pro-128k",
|
||||
// "deepseek-r1-250120",
|
||||
"deepseek-v3-241226",
|
||||
"deepseek-v3-250324",
|
||||
"deepseek-r1-distill-qwen-7b-250120",
|
||||
"deepseek-r1-distill-qwen-32b-250120",
|
||||
];
|
||||
|
||||
const alibabaModes = [
|
||||
@@ -673,11 +689,6 @@ const xAIModes = [
|
||||
"grok-3-beta",
|
||||
"grok-3",
|
||||
"grok-3-latest",
|
||||
"grok-4",
|
||||
"grok-4-0709",
|
||||
"grok-4-fast-non-reasoning",
|
||||
"grok-4-fast-reasoning",
|
||||
"grok-code-fast-1",
|
||||
];
|
||||
|
||||
const chatglmModels = [
|
||||
@@ -742,6 +753,8 @@ const ai302Models = [
|
||||
"gemini-2.5-pro",
|
||||
];
|
||||
|
||||
const huaweiModels = ["DeepSeek-R1", "DeepSeek-V3"];
|
||||
|
||||
let seq = 1000; // 内置的模型序号生成器从1000开始
|
||||
export const DEFAULT_MODELS = [
|
||||
...openaiModels.map((name) => ({
|
||||
@@ -898,6 +911,17 @@ export const DEFAULT_MODELS = [
|
||||
sorted: 14,
|
||||
},
|
||||
})),
|
||||
...huaweiModels.map((name) => ({
|
||||
name,
|
||||
available: true,
|
||||
sorted: seq++,
|
||||
provider: {
|
||||
id: "huawei",
|
||||
providerName: "Huawei",
|
||||
providerType: "Huawei",
|
||||
sorted: 15,
|
||||
},
|
||||
})),
|
||||
...ai302Models.map((name) => ({
|
||||
name,
|
||||
available: true,
|
||||
|
||||
@@ -431,6 +431,22 @@ const ar: PartialLocaleType = {
|
||||
Title: "اسم النموذج المخصص",
|
||||
SubTitle: "أضف خيارات نموذج مخصص، مفصولة بفواصل إنجليزية",
|
||||
},
|
||||
Huawei: {
|
||||
ApiKey: {
|
||||
Title: "مفتاح API",
|
||||
SubTitle: "استخدم مفتاح API الخاص بـ HUAWEI",
|
||||
Placeholder: "مفتاح HUAWEI",
|
||||
},
|
||||
SecretKey: {
|
||||
Title: "المفتاح السري",
|
||||
SubTitle: "استخدم مفتاح HUAWEI السري الخاص بك",
|
||||
Placeholder: "المفتاح السري HUAWEI",
|
||||
},
|
||||
Endpoint: {
|
||||
Title: "عنوان الواجهة",
|
||||
SubTitle: "لا يدعم التكوين المخصص .env",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Model: "النموذج",
|
||||
|
||||
@@ -439,6 +439,22 @@ const bn: PartialLocaleType = {
|
||||
SubTitle:
|
||||
"স্বনির্ধারিত মডেল বিকল্পগুলি যুক্ত করুন, ইংরেজি কমা দ্বারা আলাদা করুন",
|
||||
},
|
||||
Huawei: {
|
||||
ApiKey: {
|
||||
Title: "এপিআই কী",
|
||||
SubTitle: "আপনার HUAWEI এপিআই কী ব্যবহার করুন",
|
||||
Placeholder: "HUAWEI কী",
|
||||
},
|
||||
SecretKey: {
|
||||
Title: "গোপন কী",
|
||||
SubTitle: "আপনার HUAWEI গোপন কী ব্যবহার করুন",
|
||||
Placeholder: "HUAWEI গোপন কী",
|
||||
},
|
||||
Endpoint: {
|
||||
Title: "এন্ডপয়েন্ট ঠিকানা",
|
||||
SubTitle: "কাস্টম কনফিগারেশনের জন্য .env-এ যান",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Model: "মডেল (model)",
|
||||
|
||||
@@ -549,6 +549,22 @@ const cn = {
|
||||
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)",
|
||||
|
||||
@@ -438,6 +438,22 @@ const cs: PartialLocaleType = {
|
||||
Title: "Vlastní názvy modelů",
|
||||
SubTitle: "Přidejte možnosti vlastních modelů, oddělené čárkami",
|
||||
},
|
||||
Huawei: {
|
||||
ApiKey: {
|
||||
Title: "API Klíč",
|
||||
SubTitle: "Použijte svůj HUAWEI API klíč",
|
||||
Placeholder: "HUAWEI Klíč",
|
||||
},
|
||||
SecretKey: {
|
||||
Title: "Tajný Klíč",
|
||||
SubTitle: "Použijte svůj HUAWEI Tajný klíč",
|
||||
Placeholder: "HUAWEI Tajný Klíč",
|
||||
},
|
||||
Endpoint: {
|
||||
Title: "Adresa rozhraní",
|
||||
SubTitle: "Nepodporuje vlastní konfiguraci .env",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Model: "Model (model)",
|
||||
|
||||
@@ -498,6 +498,22 @@ const da: PartialLocaleType = {
|
||||
Title: "Egne modelnavne",
|
||||
SubTitle: "Skriv komma-adskilte navne",
|
||||
},
|
||||
Huawei: {
|
||||
ApiKey: {
|
||||
Title: "API-nøgle",
|
||||
SubTitle: "Brug din egen HUAWEI API-nøgle",
|
||||
Placeholder: "HUAWEI-nøgle",
|
||||
},
|
||||
SecretKey: {
|
||||
Title: "Hemmelig nøgle",
|
||||
SubTitle: "Brug din egen HUAWEI hemmelige nøgle",
|
||||
Placeholder: "HUAWEI hemmelig nøgle",
|
||||
},
|
||||
Endpoint: {
|
||||
Title: "Grænsefladeadresse",
|
||||
SubTitle: "Understøtter ikke tilpasset .env-konfiguration",
|
||||
},
|
||||
},
|
||||
Google: {
|
||||
ApiKey: {
|
||||
Title: "Google-nøgle",
|
||||
|
||||
@@ -450,6 +450,22 @@ const de: PartialLocaleType = {
|
||||
SubTitle:
|
||||
"Fügen Sie benutzerdefinierte Modelloptionen hinzu, getrennt durch Kommas",
|
||||
},
|
||||
Huawei: {
|
||||
ApiKey: {
|
||||
Title: "API-Schlüssel",
|
||||
SubTitle: "Verwenden Sie Ihren eigenen HUAWEI API-Schlüssel",
|
||||
Placeholder: "HUAWEI-Schlüssel",
|
||||
},
|
||||
SecretKey: {
|
||||
Title: "Geheimer Schlüssel",
|
||||
SubTitle: "Verwenden Sie Ihren eigenen HUAWEI geheimen Schlüssel",
|
||||
Placeholder: "HUAWEI geheimer Schlüssel",
|
||||
},
|
||||
Endpoint: {
|
||||
Title: "Schnittstellenadresse",
|
||||
SubTitle: "Unterstützt keine benutzerdefinierte .env-Konfiguration",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Model: "Modell",
|
||||
|
||||
@@ -522,6 +522,22 @@ const en: LocaleType = {
|
||||
Title: "Custom Models",
|
||||
SubTitle: "Custom model options, seperated by comma",
|
||||
},
|
||||
Huawei: {
|
||||
ApiKey: {
|
||||
Title: "API Key",
|
||||
SubTitle: "Use your own HUAWEI API key",
|
||||
Placeholder: "HUAWEI Key",
|
||||
},
|
||||
SecretKey: {
|
||||
Title: "Secret Key",
|
||||
SubTitle: "Use your own HUAWEI Secret key",
|
||||
Placeholder: "HUAWEI Secret Key",
|
||||
},
|
||||
Endpoint: {
|
||||
Title: "Endpoint Address",
|
||||
SubTitle: "Does not support custom .env configuration",
|
||||
},
|
||||
},
|
||||
Google: {
|
||||
ApiKey: {
|
||||
Title: "API Key",
|
||||
|
||||
@@ -452,6 +452,22 @@ const es: PartialLocaleType = {
|
||||
SubTitle:
|
||||
"Agrega opciones de modelos personalizados, separados por comas",
|
||||
},
|
||||
Huawei: {
|
||||
ApiKey: {
|
||||
Title: "Clave API",
|
||||
SubTitle: "Utiliza tu propia clave API de HUAWEI",
|
||||
Placeholder: "Clave HUAWEI",
|
||||
},
|
||||
SecretKey: {
|
||||
Title: "Clave Secreta",
|
||||
SubTitle: "Utiliza tu propia clave secreta de HUAWEI",
|
||||
Placeholder: "Clave secreta HUAWEI",
|
||||
},
|
||||
Endpoint: {
|
||||
Title: "Dirección del Endpoint",
|
||||
SubTitle: "No admite configuración personalizada .env",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Model: "Modelo (model)",
|
||||
|
||||
@@ -451,6 +451,23 @@ const fr: PartialLocaleType = {
|
||||
SubTitle:
|
||||
"Ajouter des options de modèles personnalisés, séparées par des virgules",
|
||||
},
|
||||
Huawei: {
|
||||
ApiKey: {
|
||||
Title: "Clé API",
|
||||
SubTitle: "Utilisez votre propre clé API HUAWEI",
|
||||
Placeholder: "Clé HUAWEI",
|
||||
},
|
||||
SecretKey: {
|
||||
Title: "Clé secrète",
|
||||
SubTitle: "Utilisez votre propre clé secrète HUAWEI",
|
||||
Placeholder: "Clé secrète HUAWEI",
|
||||
},
|
||||
Endpoint: {
|
||||
Title: "Adresse de l'endpoint",
|
||||
SubTitle:
|
||||
"Ne prend pas en charge la configuration personnalisée .env",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Model: "Modèle",
|
||||
|
||||
@@ -439,6 +439,22 @@ const id: PartialLocaleType = {
|
||||
Title: "Nama Model Kustom",
|
||||
SubTitle: "Tambahkan opsi model kustom, pisahkan dengan koma",
|
||||
},
|
||||
Huawei: {
|
||||
ApiKey: {
|
||||
Title: "Kunci API",
|
||||
SubTitle: "Gunakan kunci API HUAWEI Anda sendiri",
|
||||
Placeholder: "Kunci HUAWEI",
|
||||
},
|
||||
SecretKey: {
|
||||
Title: "Kunci Rahasia",
|
||||
SubTitle: "Gunakan kunci rahasia HUAWEI Anda sendiri",
|
||||
Placeholder: "Kunci Rahasia HUAWEI",
|
||||
},
|
||||
Endpoint: {
|
||||
Title: "Alamat Endpoint",
|
||||
SubTitle: "Tidak mendukung konfigurasi .env kustom",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Model: "Model",
|
||||
|
||||
@@ -452,6 +452,22 @@ const it: PartialLocaleType = {
|
||||
SubTitle:
|
||||
"Aggiungi opzioni di modelli personalizzati, separati da virgole",
|
||||
},
|
||||
Huawei: {
|
||||
ApiKey: {
|
||||
Title: "Chiave API",
|
||||
SubTitle: "Usa la tua chiave API HUAWEI",
|
||||
Placeholder: "Chiave HUAWEI",
|
||||
},
|
||||
SecretKey: {
|
||||
Title: "Chiave Segreta",
|
||||
SubTitle: "Usa la tua chiave segreta HUAWEI",
|
||||
Placeholder: "Chiave segreta HUAWEI",
|
||||
},
|
||||
Endpoint: {
|
||||
Title: "Indirizzo dell'Endpoint",
|
||||
SubTitle: "Non supporta configurazioni personalizzate .env",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Model: "Modello (model)",
|
||||
|
||||
@@ -435,6 +435,22 @@ const jp: PartialLocaleType = {
|
||||
Title: "カスタムモデル名",
|
||||
SubTitle: "カスタムモデルの選択肢を追加、英語のカンマで区切る",
|
||||
},
|
||||
Huawei: {
|
||||
ApiKey: {
|
||||
Title: "APIキー",
|
||||
SubTitle: "自分のHUAWEI APIキーを使用してください",
|
||||
Placeholder: "HUAWEIキー",
|
||||
},
|
||||
SecretKey: {
|
||||
Title: "秘密キー",
|
||||
SubTitle: "自分のHUAWEI秘密キーを使用してください",
|
||||
Placeholder: "HUAWEI秘密キー",
|
||||
},
|
||||
Endpoint: {
|
||||
Title: "エンドポイントアドレス",
|
||||
SubTitle: "カスタム.env構成はサポートされていません",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Model: "モデル (model)",
|
||||
|
||||
@@ -540,6 +540,22 @@ const ko: PartialLocaleType = {
|
||||
Title: "커스텀 모델 이름",
|
||||
SubTitle: "커스텀 모델 옵션 추가, 영어 쉼표로 구분",
|
||||
},
|
||||
Huawei: {
|
||||
ApiKey: {
|
||||
Title: "API 키",
|
||||
SubTitle: "자신의 HUAWEI API 키를 사용하세요",
|
||||
Placeholder: "HUAWEI 키",
|
||||
},
|
||||
SecretKey: {
|
||||
Title: "비밀 키",
|
||||
SubTitle: "자신의 HUAWEI 비밀 키를 사용하세요",
|
||||
Placeholder: "HUAWEI 비밀 키",
|
||||
},
|
||||
Endpoint: {
|
||||
Title: "엔드포인트 주소",
|
||||
SubTitle: "사용자 정의 .env 구성을 지원하지 않습니다",
|
||||
},
|
||||
},
|
||||
AI302: {
|
||||
ApiKey: {
|
||||
Title: "엔드포인트 키",
|
||||
|
||||
@@ -444,6 +444,22 @@ const no: PartialLocaleType = {
|
||||
SubTitle: "Eksempel:",
|
||||
},
|
||||
},
|
||||
Huawei: {
|
||||
ApiKey: {
|
||||
Title: "API-nøkkel",
|
||||
SubTitle: "Bruk din egen HUAWEI API-nøkkel",
|
||||
Placeholder: "HUAWEI-nøkkel",
|
||||
},
|
||||
SecretKey: {
|
||||
Title: "Hemmelig nøkkel",
|
||||
SubTitle: "Bruk din egen HUAWEI hemmelige nøkkel",
|
||||
Placeholder: "HUAWEI hemmelig nøkkel",
|
||||
},
|
||||
Endpoint: {
|
||||
Title: "Grensesnittadresse",
|
||||
SubTitle: "Støtter ikke tilpasset .env-konfigurasjon",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Model: "Modell",
|
||||
|
||||
@@ -374,6 +374,22 @@ const pt: PartialLocaleType = {
|
||||
Title: "Modelos Personalizados",
|
||||
SubTitle: "Opções de modelo personalizado, separados por vírgula",
|
||||
},
|
||||
Huawei: {
|
||||
ApiKey: {
|
||||
Title: "Chave API",
|
||||
SubTitle: "Use sua própria chave API HUAWEI",
|
||||
Placeholder: "Chave HUAWEI",
|
||||
},
|
||||
SecretKey: {
|
||||
Title: "Chave Secreta",
|
||||
SubTitle: "Use sua própria chave secreta HUAWEI",
|
||||
Placeholder: "Chave Secreta HUAWEI",
|
||||
},
|
||||
Endpoint: {
|
||||
Title: "Endereço do Endpoint",
|
||||
SubTitle: "Não suporta configuração personalizada .env",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Model: "Modelo",
|
||||
|
||||
@@ -442,6 +442,22 @@ const ru: PartialLocaleType = {
|
||||
SubTitle:
|
||||
"Добавьте варианты пользовательских моделей, разделяя запятыми",
|
||||
},
|
||||
Huawei: {
|
||||
ApiKey: {
|
||||
Title: "API Ключ",
|
||||
SubTitle: "Используйте свой HUAWEI API ключ",
|
||||
Placeholder: "HUAWEI Ключ",
|
||||
},
|
||||
SecretKey: {
|
||||
Title: "Секретный Ключ",
|
||||
SubTitle: "Используйте свой HUAWEI Секретный ключ",
|
||||
Placeholder: "HUAWEI Секретный Ключ",
|
||||
},
|
||||
Endpoint: {
|
||||
Title: "Адрес интерфейса",
|
||||
SubTitle: "Не поддерживает собственную конфигурацию .env",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Model: "Модель",
|
||||
|
||||
@@ -363,6 +363,22 @@ const sk: PartialLocaleType = {
|
||||
Title: "Vlastné modely",
|
||||
SubTitle: "Možnosti vlastného modelu, oddelené čiarkou",
|
||||
},
|
||||
Huawei: {
|
||||
ApiKey: {
|
||||
Title: "API kľúč",
|
||||
SubTitle: "Použite svoj vlastný HUAWEI API kľúč",
|
||||
Placeholder: "HUAWEI kľúč",
|
||||
},
|
||||
SecretKey: {
|
||||
Title: "Tajný kľúč",
|
||||
SubTitle: "Použite svoj vlastný HUAWEI tajný kľúč",
|
||||
Placeholder: "HUAWEI tajný kľúč",
|
||||
},
|
||||
Endpoint: {
|
||||
Title: "Adresa rozhrania",
|
||||
SubTitle: "Nepodporuje vlastnú konfiguráciu .env",
|
||||
},
|
||||
},
|
||||
Google: {
|
||||
ApiKey: {
|
||||
Title: "API kľúč",
|
||||
|
||||
@@ -442,6 +442,22 @@ const tr: PartialLocaleType = {
|
||||
SubTitle:
|
||||
"Özelleştirilmiş model seçenekleri ekleyin, İngilizce virgül ile ayırın",
|
||||
},
|
||||
Huawei: {
|
||||
ApiKey: {
|
||||
Title: "API Anahtarı",
|
||||
SubTitle: "Kendi Huawei API Anahtarınızı kullanın",
|
||||
Placeholder: "HUAWEI Anahtarı",
|
||||
},
|
||||
SecretKey: {
|
||||
Title: "Gizli Anahtar",
|
||||
SubTitle: "Kendi HUAWEI Gizli Anahtarınızı kullanın",
|
||||
Placeholder: "HUAWEI Gizli Anahtarı",
|
||||
},
|
||||
Endpoint: {
|
||||
Title: "Arayüz Adresi",
|
||||
SubTitle: "Özelleştirilmiş .env yapılandırmasına desteklenmez",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Model: "Model (model)",
|
||||
|
||||
@@ -397,6 +397,22 @@ const tw = {
|
||||
Title: "自訂模型名稱",
|
||||
SubTitle: "增加自訂模型可選擇項目,使用英文逗號隔開",
|
||||
},
|
||||
Huawei: {
|
||||
ApiKey: {
|
||||
Title: "API金鑰",
|
||||
SubTitle: "使用您的HUAWEI API金鑰",
|
||||
Placeholder: "HUAWEI金鑰",
|
||||
},
|
||||
SecretKey: {
|
||||
Title: "密鑰",
|
||||
SubTitle: "使用您的HUAWEI密鑰",
|
||||
Placeholder: "HUAWEI密鑰",
|
||||
},
|
||||
Endpoint: {
|
||||
Title: "端點地址",
|
||||
SubTitle: "不支援自訂的.env配置",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Model: "模型 (model)",
|
||||
|
||||
@@ -438,6 +438,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: "Khóa API",
|
||||
SubTitle: "Sử dụng khóa API HUAWEI của bạn",
|
||||
Placeholder: "Khóa HUAWEI",
|
||||
},
|
||||
SecretKey: {
|
||||
Title: "Khóa bí mật",
|
||||
SubTitle: "Sử dụng khóa bí mật HUAWEI của bạn",
|
||||
Placeholder: "Khóa bí mật HUAWEI",
|
||||
},
|
||||
Endpoint: {
|
||||
Title: "Địa chỉ điểm cuối",
|
||||
SubTitle: "Không hỗ trợ cấu hình .env tùy chỉnh",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Model: "Mô hình (model)",
|
||||
|
||||
@@ -17,6 +17,7 @@ import {
|
||||
XAI_BASE_URL,
|
||||
CHATGLM_BASE_URL,
|
||||
SILICONFLOW_BASE_URL,
|
||||
HUAWEI_BASE_URL,
|
||||
AI302_BASE_URL,
|
||||
} from "../constant";
|
||||
import { getHeaders } from "../client/api";
|
||||
@@ -56,6 +57,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;
|
||||
@@ -134,6 +137,9 @@ const DEFAULT_ACCESS_STATE = {
|
||||
// siliconflow
|
||||
siliconflowUrl: DEFAULT_SILICONFLOW_URL,
|
||||
siliconflowApiKey: "",
|
||||
// huawei
|
||||
huaweiUrl: DEFAULT_HUAWEI_URL,
|
||||
huaweiApiKey: "",
|
||||
|
||||
// 302.AI
|
||||
ai302Url: DEFAULT_AI302_URL,
|
||||
@@ -226,6 +232,9 @@ export const useAccessStore = createPersistStore(
|
||||
return ensure(get(), ["siliconflowApiKey"]);
|
||||
},
|
||||
|
||||
isValidHuawei() {
|
||||
return ensure(get(), ["huaweiApiKey"]);
|
||||
},
|
||||
isAuthorized() {
|
||||
this.fetch();
|
||||
|
||||
@@ -245,6 +254,7 @@ export const useAccessStore = createPersistStore(
|
||||
this.isValidXAI() ||
|
||||
this.isValidChatGLM() ||
|
||||
this.isValidSiliconFlow() ||
|
||||
this.isValidHuawei() ||
|
||||
!this.enabledAccessControl() ||
|
||||
(this.enabledAccessControl() && ensure(get(), ["accessCode"]))
|
||||
);
|
||||
|
||||
@@ -17,6 +17,40 @@ services:
|
||||
- ENABLE_BALANCE_QUERY=$ENABLE_BALANCE_QUERY
|
||||
- DISABLE_FAST_LINK=$DISABLE_FAST_LINK
|
||||
- OPENAI_SB=$OPENAI_SB
|
||||
- SILICONFLOW_API_KEY=$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_API_KEY=$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
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tauri-apps/api": "^2.1.1",
|
||||
"@tauri-apps/cli": "2.9.1",
|
||||
"@tauri-apps/cli": "1.5.11",
|
||||
"@testing-library/dom": "^10.4.0",
|
||||
"@testing-library/jest-dom": "^6.6.3",
|
||||
"@testing-library/react": "^16.1.0",
|
||||
|
||||
114
yarn.lock
114
yarn.lock
@@ -2043,77 +2043,71 @@
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/api/-/api-2.1.1.tgz#77d4ddb683d31072de4e6a47c8613d9db011652b"
|
||||
integrity sha512-fzUfFFKo4lknXGJq8qrCidkUcKcH2UHhfaaCNt4GzgzGaW2iS26uFOg4tS3H4P8D6ZEeUxtiD5z0nwFF0UN30A==
|
||||
|
||||
"@tauri-apps/cli-darwin-arm64@2.9.1":
|
||||
version "2.9.1"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-2.9.1.tgz#60bbf0a34098c1feb865d7483433c6e4a0208142"
|
||||
integrity sha512-sdwhtsE/6njD0AjgfYEj1JyxZH4SBmCJSXpRm6Ph5fQeuZD6MyjzjdVOrrtFguyREVQ7xn0Ujkwvbo01ULthNg==
|
||||
"@tauri-apps/cli-darwin-arm64@1.5.11":
|
||||
version "1.5.11"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-1.5.11.tgz#a831f98f685148e46e8050dbdddbf4bcdda9ddc6"
|
||||
integrity sha512-2NLSglDb5VfvTbMtmOKWyD+oaL/e8Z/ZZGovHtUFyUSFRabdXc6cZOlcD1BhFvYkHqm+TqGaz5qtPR5UbqDs8A==
|
||||
|
||||
"@tauri-apps/cli-darwin-x64@2.9.1":
|
||||
version "2.9.1"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-2.9.1.tgz#e0bdb2e29201dd0b46bffa61cc7dccb5f0c6ae29"
|
||||
integrity sha512-c86g+67wTdI4TUCD7CaSd/13+oYuLQxVST4ZNJ5C+6i1kdnU3Us1L68N9MvbDLDQGJc9eo0pvuK6sCWkee+BzA==
|
||||
"@tauri-apps/cli-darwin-x64@1.5.11":
|
||||
version "1.5.11"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-1.5.11.tgz#0afae17fe1e84b9699a6b9824cd83b60c6ebfa59"
|
||||
integrity sha512-/RQllHiJRH2fJOCudtZlaUIjofkHzP3zZgxi71ZUm7Fy80smU5TDfwpwOvB0wSVh0g/ciDjMArCSTo0MRvL+ag==
|
||||
|
||||
"@tauri-apps/cli-linux-arm-gnueabihf@2.9.1":
|
||||
version "2.9.1"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-2.9.1.tgz#15ad573c32b8941d10c2ebd2ecfe399ea85ed023"
|
||||
integrity sha512-IrB3gFQmueQKJjjisOcMktW/Gh6gxgqYO419doA3YZ7yIV5rbE8ZW52Q3I4AO+SlFEyVYer5kpi066p0JBlLGw==
|
||||
"@tauri-apps/cli-linux-arm-gnueabihf@1.5.11":
|
||||
version "1.5.11"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-1.5.11.tgz#c46166d7f6c1022105a13d530b1d1336f628981f"
|
||||
integrity sha512-IlBuBPKmMm+a5LLUEK6a21UGr9ZYd6zKuKLq6IGM4tVweQa8Sf2kP2Nqs74dMGIUrLmMs0vuqdURpykQg+z4NQ==
|
||||
|
||||
"@tauri-apps/cli-linux-arm64-gnu@2.9.1":
|
||||
version "2.9.1"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-2.9.1.tgz#f7a5dd6f46c5a2b52f20a61308cd61dd04694435"
|
||||
integrity sha512-Ke7TyXvu6HbWSkmVkFbbH19D3cLsd117YtXP/u9NIvSpYwKeFtnbpirrIUfPm44Q+PZFZ2Hvg8X9qoUiAK0zKw==
|
||||
"@tauri-apps/cli-linux-arm64-gnu@1.5.11":
|
||||
version "1.5.11"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-1.5.11.tgz#fd5c539a03371e0ab6cd00563dced1610ceb8943"
|
||||
integrity sha512-w+k1bNHCU/GbmXshtAhyTwqosThUDmCEFLU4Zkin1vl2fuAtQry2RN7thfcJFepblUGL/J7yh3Q/0+BCjtspKQ==
|
||||
|
||||
"@tauri-apps/cli-linux-arm64-musl@2.9.1":
|
||||
version "2.9.1"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-2.9.1.tgz#011caad0d6222f5c18221d7b413e1b4750eef5f4"
|
||||
integrity sha512-sGvy75sv55oeMulR5ArwPD28DsDQxqTzLhXCrpU9/nbFg/JImmI7k994YE9fr3V0qE3Cjk5gjLldRNv7I9sjwQ==
|
||||
"@tauri-apps/cli-linux-arm64-musl@1.5.11":
|
||||
version "1.5.11"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-1.5.11.tgz#bf7f940c3aca981d7c240857a86568d5b6e8310f"
|
||||
integrity sha512-PN6/dl+OfYQ/qrAy4HRAfksJ2AyWQYn2IA/2Wwpaa7SDRz2+hzwTQkvajuvy0sQ5L2WCG7ymFYRYMbpC6Hk9Pg==
|
||||
|
||||
"@tauri-apps/cli-linux-riscv64-gnu@2.9.1":
|
||||
version "2.9.1"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-riscv64-gnu/-/cli-linux-riscv64-gnu-2.9.1.tgz#0328624bf798d653c49bc0455d1cc111e631846b"
|
||||
integrity sha512-tEKbJydV3BdIxpAx8aGHW6VDg1xW4LlQuRD/QeFZdZNTreHJpMbJEcdvAcI+Hg6vgQpVpaoEldR9W4F6dYSLqQ==
|
||||
"@tauri-apps/cli-linux-x64-gnu@1.5.11":
|
||||
version "1.5.11"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-1.5.11.tgz#17323105e3863a3f36d51771e642e489037ba59b"
|
||||
integrity sha512-MTVXLi89Nj7Apcvjezw92m7ZqIDKT5SFKZtVPCg6RoLUBTzko/BQoXYIRWmdoz2pgkHDUHgO2OMJ8oKzzddXbw==
|
||||
|
||||
"@tauri-apps/cli-linux-x64-gnu@2.9.1":
|
||||
version "2.9.1"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-2.9.1.tgz#25e0f95615ddede953af4d29ad1c0d1f7c160c3f"
|
||||
integrity sha512-mg5msXHagtHpyCVWgI01M26JeSrgE/otWyGdYcuTwyRYZYEJRTbcNt7hscOkdNlPBe7isScW7PVKbxmAjJJl4g==
|
||||
"@tauri-apps/cli-linux-x64-musl@1.5.11":
|
||||
version "1.5.11"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-1.5.11.tgz#83e22026771ec8ab094922ab114a7385532aa16c"
|
||||
integrity sha512-kwzAjqFpz7rvTs7WGZLy/a5nS5t15QKr3E9FG95MNF0exTl3d29YoAUAe1Mn0mOSrTJ9Z+vYYAcI/QdcsGBP+w==
|
||||
|
||||
"@tauri-apps/cli-linux-x64-musl@2.9.1":
|
||||
version "2.9.1"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-2.9.1.tgz#ccb819101a225947f42ebb4f1f6902514aa902e3"
|
||||
integrity sha512-lFZEXkpDreUe3zKilvnMsrnKP9gwQudaEjDnOz/GMzbzNceIuPfFZz0cR/ky1Aoq4eSvZonPKHhROq4owz4fzg==
|
||||
"@tauri-apps/cli-win32-arm64-msvc@1.5.11":
|
||||
version "1.5.11"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli-win32-arm64-msvc/-/cli-win32-arm64-msvc-1.5.11.tgz#817874d230fdb09e7211013006a9a22f66ace573"
|
||||
integrity sha512-L+5NZ/rHrSUrMxjj6YpFYCXp6wHnq8c8SfDTBOX8dO8x+5283/vftb4vvuGIsLS4UwUFXFnLt3XQr44n84E67Q==
|
||||
|
||||
"@tauri-apps/cli-win32-arm64-msvc@2.9.1":
|
||||
version "2.9.1"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli-win32-arm64-msvc/-/cli-win32-arm64-msvc-2.9.1.tgz#c0be0555d2b3686d4b3ea702039d41ed6017e4eb"
|
||||
integrity sha512-ejc5RAp/Lm1Aj0EQHaT+Wdt5PHfdgQV5hIDV00MV6HNbIb5W4ZUFxMDaRkAg65gl9MvY2fH396riePW3RoKXDw==
|
||||
"@tauri-apps/cli-win32-ia32-msvc@1.5.11":
|
||||
version "1.5.11"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-1.5.11.tgz#dee1a00eb9e216415d9d6ab9386c35849613c560"
|
||||
integrity sha512-oVlD9IVewrY0lZzTdb71kNXkjdgMqFq+ohb67YsJb4Rf7o8A9DTlFds1XLCe3joqLMm4M+gvBKD7YnGIdxQ9vA==
|
||||
|
||||
"@tauri-apps/cli-win32-ia32-msvc@2.9.1":
|
||||
version "2.9.1"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-2.9.1.tgz#b637cd436f129ef3ff6e83a4095c37b85f308a27"
|
||||
integrity sha512-fSATtJDc0fNjVB6ystyi8NbwhNFk8i8E05h6KrsC8Fio5eaJIJvPCbC9pdrPl6kkxN1X7fj25ErBbgfqgcK8Fg==
|
||||
"@tauri-apps/cli-win32-x64-msvc@1.5.11":
|
||||
version "1.5.11"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-1.5.11.tgz#c003ce00b36d056a8b08e0ecf4633c2bba00c497"
|
||||
integrity sha512-1CexcqUFCis5ypUIMOKllxUBrna09McbftWENgvVXMfA+SP+yPDPAVb8fIvUcdTIwR/yHJwcIucmTB4anww4vg==
|
||||
|
||||
"@tauri-apps/cli-win32-x64-msvc@2.9.1":
|
||||
version "2.9.1"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-2.9.1.tgz#d7c8512dd70f9aa8203f2011322542ec11f76b66"
|
||||
integrity sha512-/JHlOzpUDhjBOO9w167bcYxfJbcMQv7ykS/Y07xjtcga8np0rzUzVGWYmLMH7orKcDMC7wjhheEW1x8cbGma/Q==
|
||||
|
||||
"@tauri-apps/cli@2.9.1":
|
||||
version "2.9.1"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli/-/cli-2.9.1.tgz#cdc1cc6a005fef017b2a8f1a96d32537afc74579"
|
||||
integrity sha512-kKi2/WWsNXKoMdatBl4xrT7e1Ce27JvsetBVfWuIb6D3ep/Y0WO5SIr70yarXOSWam8NyDur4ipzjZkg6m7VDg==
|
||||
"@tauri-apps/cli@1.5.11":
|
||||
version "1.5.11"
|
||||
resolved "https://registry.yarnpkg.com/@tauri-apps/cli/-/cli-1.5.11.tgz#02beb559b3b55836c90a1ba9121b3fc50e3760cd"
|
||||
integrity sha512-B475D7phZrq5sZ3kDABH4g2mEoUIHtnIO+r4ZGAAfsjMbZCwXxR/jlMGTEL+VO3YzjpF7gQe38IzB4vLBbVppw==
|
||||
optionalDependencies:
|
||||
"@tauri-apps/cli-darwin-arm64" "2.9.1"
|
||||
"@tauri-apps/cli-darwin-x64" "2.9.1"
|
||||
"@tauri-apps/cli-linux-arm-gnueabihf" "2.9.1"
|
||||
"@tauri-apps/cli-linux-arm64-gnu" "2.9.1"
|
||||
"@tauri-apps/cli-linux-arm64-musl" "2.9.1"
|
||||
"@tauri-apps/cli-linux-riscv64-gnu" "2.9.1"
|
||||
"@tauri-apps/cli-linux-x64-gnu" "2.9.1"
|
||||
"@tauri-apps/cli-linux-x64-musl" "2.9.1"
|
||||
"@tauri-apps/cli-win32-arm64-msvc" "2.9.1"
|
||||
"@tauri-apps/cli-win32-ia32-msvc" "2.9.1"
|
||||
"@tauri-apps/cli-win32-x64-msvc" "2.9.1"
|
||||
"@tauri-apps/cli-darwin-arm64" "1.5.11"
|
||||
"@tauri-apps/cli-darwin-x64" "1.5.11"
|
||||
"@tauri-apps/cli-linux-arm-gnueabihf" "1.5.11"
|
||||
"@tauri-apps/cli-linux-arm64-gnu" "1.5.11"
|
||||
"@tauri-apps/cli-linux-arm64-musl" "1.5.11"
|
||||
"@tauri-apps/cli-linux-x64-gnu" "1.5.11"
|
||||
"@tauri-apps/cli-linux-x64-musl" "1.5.11"
|
||||
"@tauri-apps/cli-win32-arm64-msvc" "1.5.11"
|
||||
"@tauri-apps/cli-win32-ia32-msvc" "1.5.11"
|
||||
"@tauri-apps/cli-win32-x64-msvc" "1.5.11"
|
||||
|
||||
"@testing-library/dom@^10.4.0":
|
||||
version "10.4.0"
|
||||
|
||||
Reference in New Issue
Block a user