|
|
|
|
|
export const OWNER = "ChatGPTNextWeb";
|
|
|
|
|
|
export const REPO = "ChatGPT-Next-Web";
|
|
|
|
|
|
export const REPO_URL = `https://github.com/${OWNER}/${REPO}`;
|
|
|
|
|
|
export const PLUGINS_REPO_URL = `https://github.com/${OWNER}/NextChat-Awesome-Plugins`;
|
|
|
|
|
|
export const ISSUE_URL = `https://github.com/${OWNER}/${REPO}/issues`;
|
|
|
|
|
|
export const UPDATE_URL = `${REPO_URL}#keep-updated`;
|
|
|
|
|
|
export const RELEASE_URL = `${REPO_URL}/releases`;
|
|
|
|
|
|
export const FETCH_COMMIT_URL = `https://api.github.com/repos/${OWNER}/${REPO}/commits?per_page=1`;
|
|
|
|
|
|
export const FETCH_TAG_URL = `https://api.github.com/repos/${OWNER}/${REPO}/tags?per_page=1`;
|
|
|
|
|
|
export const RUNTIME_CONFIG_DOM = "danger-runtime-config";
|
|
|
|
|
|
|
|
|
|
|
|
export const STABILITY_BASE_URL = "https://api.stability.ai";
|
|
|
|
|
|
|
|
|
|
|
|
export const OPENAI_BASE_URL = "https://api.openai.com";
|
|
|
|
|
|
export const ANTHROPIC_BASE_URL = "https://api.anthropic.com";
|
|
|
|
|
|
|
|
|
|
|
|
export const GEMINI_BASE_URL = "https://generativelanguage.googleapis.com/";
|
|
|
|
|
|
|
|
|
|
|
|
export const BAIDU_BASE_URL = "https://aip.baidubce.com";
|
|
|
|
|
|
export const BAIDU_OATUH_URL = `${BAIDU_BASE_URL}/oauth/2.0/token`;
|
|
|
|
|
|
|
|
|
|
|
|
export const BYTEDANCE_BASE_URL = "https://ark.cn-beijing.volces.com";
|
|
|
|
|
|
|
|
|
|
|
|
export const ALIBABA_BASE_URL = "https://dashscope.aliyuncs.com/api/";
|
|
|
|
|
|
|
|
|
|
|
|
export const TENCENT_BASE_URL = "https://hunyuan.tencentcloudapi.com";
|
|
|
|
|
|
|
|
|
|
|
|
export const MOONSHOT_BASE_URL = "https://api.moonshot.cn";
|
|
|
|
|
|
export const IFLYTEK_BASE_URL = "https://spark-api-open.xf-yun.com";
|
|
|
|
|
|
|
|
|
|
|
|
export const DEEPSEEK_BASE_URL = "https://api.deepseek.com";
|
|
|
|
|
|
|
|
|
|
|
|
export const XAI_BASE_URL = "https://api.x.ai";
|
|
|
|
|
|
|
|
|
|
|
|
export const CHATGLM_BASE_URL = "https://open.bigmodel.cn";
|
|
|
|
|
|
|
|
|
|
|
|
export const SILICONFLOW_BASE_URL = "https://api.siliconflow.cn";
|
|
|
|
|
|
|
|
|
|
|
|
export const CACHE_URL_PREFIX = "/api/cache";
|
|
|
|
|
|
export const UPLOAD_URL = `${CACHE_URL_PREFIX}/upload`;
|
|
|
|
|
|
|
|
|
|
|
|
export enum Path {
|
|
|
|
|
|
Home = "/",
|
|
|
|
|
|
Chat = "/chat",
|
|
|
|
|
|
Settings = "/settings",
|
|
|
|
|
|
NewChat = "/new-chat",
|
|
|
|
|
|
Masks = "/masks",
|
|
|
|
|
|
Plugins = "/plugins",
|
|
|
|
|
|
Auth = "/auth",
|
|
|
|
|
|
Sd = "/sd",
|
|
|
|
|
|
SdNew = "/sd-new",
|
|
|
|
|
|
Artifacts = "/artifacts",
|
|
|
|
|
|
SearchChat = "/search-chat",
|
|
|
|
|
|
McpMarket = "/mcp-market",
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export enum ApiPath {
|
|
|
|
|
|
Cors = "",
|
|
|
|
|
|
Azure = "/api/azure",
|
|
|
|
|
|
OpenAI = "/api/openai",
|
|
|
|
|
|
Anthropic = "/api/anthropic",
|
|
|
|
|
|
Google = "/api/google",
|
|
|
|
|
|
Baidu = "/api/baidu",
|
|
|
|
|
|
ByteDance = "/api/bytedance",
|
|
|
|
|
|
Alibaba = "/api/alibaba",
|
|
|
|
|
|
Tencent = "/api/tencent",
|
|
|
|
|
|
Moonshot = "/api/moonshot",
|
|
|
|
|
|
Iflytek = "/api/iflytek",
|
|
|
|
|
|
Stability = "/api/stability",
|
|
|
|
|
|
Artifacts = "/api/artifacts",
|
|
|
|
|
|
XAI = "/api/xai",
|
|
|
|
|
|
ChatGLM = "/api/chatglm",
|
|
|
|
|
|
DeepSeek = "/api/deepseek",
|
|
|
|
|
|
SiliconFlow = "/api/siliconflow",
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export enum SlotID {
|
|
|
|
|
|
AppBody = "app-body",
|
|
|
|
|
|
CustomModel = "custom-model",
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export enum FileName {
|
|
|
|
|
|
Masks = "masks.json",
|
|
|
|
|
|
Prompts = "prompts.json",
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export enum StoreKey {
|
|
|
|
|
|
Chat = "chat-next-web-store",
|
|
|
|
|
|
Plugin = "chat-next-web-plugin",
|
|
|
|
|
|
Access = "access-control",
|
|
|
|
|
|
Config = "app-config",
|
|
|
|
|
|
Mask = "mask-store",
|
|
|
|
|
|
Prompt = "prompt-store",
|
|
|
|
|
|
Update = "chat-update",
|
|
|
|
|
|
Sync = "sync",
|
|
|
|
|
|
SdList = "sd-list",
|
|
|
|
|
|
Mcp = "mcp-store",
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export const DEFAULT_SIDEBAR_WIDTH = 300;
|
|
|
|
|
|
export const MAX_SIDEBAR_WIDTH = 500;
|
|
|
|
|
|
export const MIN_SIDEBAR_WIDTH = 230;
|
|
|
|
|
|
export const NARROW_SIDEBAR_WIDTH = 100;
|
|
|
|
|
|
|
|
|
|
|
|
export const ACCESS_CODE_PREFIX = "nk-";
|
|
|
|
|
|
|
|
|
|
|
|
export const LAST_INPUT_KEY = "last-input";
|
|
|
|
|
|
export const UNFINISHED_INPUT = (id: string) => "unfinished-input-" + id;
|
|
|
|
|
|
|
|
|
|
|
|
export const STORAGE_KEY = "chatgpt-next-web";
|
|
|
|
|
|
|
|
|
|
|
|
export const REQUEST_TIMEOUT_MS = 60000;
|
|
|
|
|
|
export const REQUEST_TIMEOUT_MS_FOR_THINKING = REQUEST_TIMEOUT_MS * 5;
|
|
|
|
|
|
|
|
|
|
|
|
export const EXPORT_MESSAGE_CLASS_NAME = "export-markdown";
|
|
|
|
|
|
|
|
|
|
|
|
export enum ServiceProvider {
|
|
|
|
|
|
OpenAI = "OpenAI",
|
|
|
|
|
|
Azure = "Azure",
|
|
|
|
|
|
Google = "Google",
|
|
|
|
|
|
Anthropic = "Anthropic",
|
|
|
|
|
|
Baidu = "Baidu",
|
|
|
|
|
|
ByteDance = "ByteDance",
|
|
|
|
|
|
Alibaba = "Alibaba",
|
|
|
|
|
|
Tencent = "Tencent",
|
|
|
|
|
|
Moonshot = "Moonshot",
|
|
|
|
|
|
Stability = "Stability",
|
|
|
|
|
|
Iflytek = "Iflytek",
|
|
|
|
|
|
XAI = "XAI",
|
|
|
|
|
|
ChatGLM = "ChatGLM",
|
|
|
|
|
|
DeepSeek = "DeepSeek",
|
|
|
|
|
|
SiliconFlow = "SiliconFlow",
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Google API safety settings, see https://ai.google.dev/gemini-api/docs/safety-settings
|
|
|
|
|
|
// BLOCK_NONE will not block any content, and BLOCK_ONLY_HIGH will block only high-risk content.
|
|
|
|
|
|
export enum GoogleSafetySettingsThreshold {
|
|
|
|
|
|
BLOCK_NONE = "BLOCK_NONE",
|
|
|
|
|
|
BLOCK_ONLY_HIGH = "BLOCK_ONLY_HIGH",
|
|
|
|
|
|
BLOCK_MEDIUM_AND_ABOVE = "BLOCK_MEDIUM_AND_ABOVE",
|
|
|
|
|
|
BLOCK_LOW_AND_ABOVE = "BLOCK_LOW_AND_ABOVE",
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export enum ModelProvider {
|
|
|
|
|
|
Stability = "Stability",
|
|
|
|
|
|
GPT = "GPT",
|
|
|
|
|
|
GeminiPro = "GeminiPro",
|
|
|
|
|
|
Claude = "Claude",
|
|
|
|
|
|
Ernie = "Ernie",
|
|
|
|
|
|
Doubao = "Doubao",
|
|
|
|
|
|
Qwen = "Qwen",
|
|
|
|
|
|
Hunyuan = "Hunyuan",
|
|
|
|
|
|
Moonshot = "Moonshot",
|
|
|
|
|
|
Iflytek = "Iflytek",
|
|
|
|
|
|
XAI = "XAI",
|
|
|
|
|
|
ChatGLM = "ChatGLM",
|
|
|
|
|
|
DeepSeek = "DeepSeek",
|
|
|
|
|
|
SiliconFlow = "SiliconFlow",
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export const Stability = {
|
|
|
|
|
|
GeneratePath: "v2beta/stable-image/generate",
|
|
|
|
|
|
ExampleEndpoint: "https://api.stability.ai",
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const Anthropic = {
|
|
|
|
|
|
ChatPath: "v1/messages",
|
|
|
|
|
|
ChatPath1: "v1/complete",
|
|
|
|
|
|
ExampleEndpoint: "https://api.anthropic.com",
|
|
|
|
|
|
Vision: "2023-06-01",
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const OpenaiPath = {
|
|
|
|
|
|
ChatPath: "v1/chat/completions",
|
|
|
|
|
|
SpeechPath: "v1/audio/speech",
|
|
|
|
|
|
ImagePath: "v1/images/generations",
|
|
|
|
|
|
UsagePath: "dashboard/billing/usage",
|
|
|
|
|
|
SubsPath: "dashboard/billing/subscription",
|
|
|
|
|
|
ListModelPath: "v1/models",
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const Azure = {
|
|
|
|
|
|
ChatPath: (deployName: string, apiVersion: string) =>
|
|
|
|
|
|
`deployments/${deployName}/chat/completions?api-version=${apiVersion}`,
|
|
|
|
|
|
// https://<your_resource_name>.openai.azure.com/openai/deployments/<your_deployment_name>/images/generations?api-version=<api_version>
|
|
|
|
|
|
ImagePath: (deployName: string, apiVersion: string) =>
|
|
|
|
|
|
`deployments/${deployName}/images/generations?api-version=${apiVersion}`,
|
|
|
|
|
|
ExampleEndpoint: "https://{resource-url}/openai",
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const Google = {
|
|
|
|
|
|
ExampleEndpoint: "https://generativelanguage.googleapis.com/",
|
|
|
|
|
|
ChatPath: (modelName: string) =>
|
|
|
|
|
|
`v1beta/models/${modelName}:streamGenerateContent`,
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const Baidu = {
|
|
|
|
|
|
ExampleEndpoint: BAIDU_BASE_URL,
|
|
|
|
|
|
ChatPath: (modelName: string) => {
|
|
|
|
|
|
let endpoint = modelName;
|
|
|
|
|
|
if (modelName === "ernie-4.0-8k") {
|
|
|
|
|
|
endpoint = "completions_pro";
|
|
|
|
|
|
}
|
|
|
|
|
|
if (modelName === "ernie-4.0-8k-preview-0518") {
|
|
|
|
|
|
endpoint = "completions_adv_pro";
|
|
|
|
|
|
}
|
|
|
|
|
|
if (modelName === "ernie-3.5-8k") {
|
|
|
|
|
|
endpoint = "completions";
|
|
|
|
|
|
}
|
|
|
|
|
|
if (modelName === "ernie-speed-8k") {
|
|
|
|
|
|
endpoint = "ernie_speed";
|
|
|
|
|
|
}
|
|
|
|
|
|
return `rpc/2.0/ai_custom/v1/wenxinworkshop/chat/${endpoint}`;
|
|
|
|
|
|
},
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const ByteDance = {
|
|
|
|
|
|
ExampleEndpoint: "https://ark.cn-beijing.volces.com/api/",
|
|
|
|
|
|
ChatPath: "api/v3/chat/completions",
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const Alibaba = {
|
|
|
|
|
|
ExampleEndpoint: ALIBABA_BASE_URL,
|
|
|
|
|
|
ChatPath: "v1/services/aigc/text-generation/generation",
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const Tencent = {
|
|
|
|
|
|
ExampleEndpoint: TENCENT_BASE_URL,
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const Moonshot = {
|
|
|
|
|
|
ExampleEndpoint: MOONSHOT_BASE_URL,
|
|
|
|
|
|
ChatPath: "v1/chat/completions",
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const Iflytek = {
|
|
|
|
|
|
ExampleEndpoint: IFLYTEK_BASE_URL,
|
|
|
|
|
|
ChatPath: "v1/chat/completions",
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const DeepSeek = {
|
|
|
|
|
|
ExampleEndpoint: DEEPSEEK_BASE_URL,
|
|
|
|
|
|
ChatPath: "chat/completions",
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const XAI = {
|
|
|
|
|
|
ExampleEndpoint: XAI_BASE_URL,
|
|
|
|
|
|
ChatPath: "v1/chat/completions",
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const ChatGLM = {
|
|
|
|
|
|
ExampleEndpoint: CHATGLM_BASE_URL,
|
|
|
|
|
|
ChatPath: "api/paas/v4/chat/completions",
|
|
|
|
|
|
ImagePath: "api/paas/v4/images/generations",
|
|
|
|
|
|
VideoPath: "api/paas/v4/videos/generations",
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const SiliconFlow = {
|
|
|
|
|
|
ExampleEndpoint: SILICONFLOW_BASE_URL,
|
|
|
|
|
|
ChatPath: "v1/chat/completions",
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const DEFAULT_INPUT_TEMPLATE = `{{input}}`; // input / time / model / lang
|
|
|
|
|
|
// export const DEFAULT_SYSTEM_TEMPLATE = `
|
|
|
|
|
|
// You are ChatGPT, a large language model trained by {{ServiceProvider}}.
|
|
|
|
|
|
// Knowledge cutoff: {{cutoff}}
|
|
|
|
|
|
// Current model: {{model}}
|
|
|
|
|
|
// Current time: {{time}}
|
|
|
|
|
|
// Latex inline: $x^2$
|
|
|
|
|
|
// Latex block: $$e=mc^2$$
|
|
|
|
|
|
// `;
|
|
|
|
|
|
export const DEFAULT_SYSTEM_TEMPLATE = `
|
|
|
|
|
|
You are ChatGPT, a large language model trained by {{ServiceProvider}}.
|
|
|
|
|
|
Knowledge cutoff: {{cutoff}}
|
|
|
|
|
|
Current model: {{model}}
|
|
|
|
|
|
Current time: {{time}}
|
|
|
|
|
|
Latex inline: \\(x^2\\)
|
|
|
|
|
|
Latex block: $$e=mc^2$$
|
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
|
|
export const MCP_TOOLS_TEMPLATE = `
|
|
|
|
|
|
[clientId]
|
|
|
|
|
|
{{ clientId }}
|
|
|
|
|
|
[tools]
|
|
|
|
|
|
{{ tools }}
|
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
|
|
export const MCP_SYSTEM_TEMPLATE = `
|
|
|
|
|
|
You are an AI assistant with access to system tools. Your role is to help users by combining natural language understanding with tool operations when needed.
|
|
|
|
|
|
|
|
|
|
|
|
1. AVAILABLE TOOLS:
|
|
|
|
|
|
{{ MCP_TOOLS }}
|
|
|
|
|
|
|
|
|
|
|
|
2. WHEN TO USE TOOLS:
|
|
|
|
|
|
- ALWAYS USE TOOLS when they can help answer user questions
|
|
|
|
|
|
- DO NOT just describe what you could do - TAKE ACTION immediately
|
|
|
|
|
|
- If you're not sure whether to use a tool, USE IT
|
|
|
|
|
|
- Common triggers for tool use:
|
|
|
|
|
|
* Questions about files or directories
|
|
|
|
|
|
* Requests to check, list, or manipulate system resources
|
|
|
|
|
|
* Any query that can be answered with available tools
|
|
|
|
|
|
|
|
|
|
|
|
3. HOW TO USE TOOLS:
|
|
|
|
|
|
A. Tool Call Format:
|
|
|
|
|
|
- Use markdown code blocks with format: \`\`\`json:mcp:{clientId}\`\`\`
|
|
|
|
|
|
- Always include:
|
|
|
|
|
|
* method: "tools/call"(Only this method is supported)
|
|
|
|
|
|
* params:
|
|
|
|
|
|
- name: must match an available primitive name
|
|
|
|
|
|
- arguments: required parameters for the primitive
|
|
|
|
|
|
|
|
|
|
|
|
B. Response Format:
|
|
|
|
|
|
- Tool responses will come as user messages
|
|
|
|
|
|
- Format: \`\`\`json:mcp-response:{clientId}\`\`\`
|
|
|
|
|
|
- Wait for response before making another tool call
|
|
|
|
|
|
|
|
|
|
|
|
C. Important Rules:
|
|
|
|
|
|
- Only use tools/call method
|
|
|
|
|
|
- Only ONE tool call per message
|
|
|
|
|
|
- ALWAYS TAKE ACTION instead of just describing what you could do
|
|
|
|
|
|
- Include the correct clientId in code block language tag
|
|
|
|
|
|
- Verify arguments match the primitive's requirements
|
|
|
|
|
|
|
|
|
|
|
|
4. INTERACTION FLOW:
|
|
|
|
|
|
A. When user makes a request:
|
|
|
|
|
|
- IMMEDIATELY use appropriate tool if available
|
|
|
|
|
|
- DO NOT ask if user wants you to use the tool
|
|
|
|
|
|
- DO NOT just describe what you could do
|
|
|
|
|
|
B. After receiving tool response:
|
|
|
|
|
|
- Explain results clearly
|
|
|
|
|
|
- Take next appropriate action if needed
|
|
|
|
|
|
C. If tools fail:
|
|
|
|
|
|
- Explain the error
|
|
|
|
|
|
- Try alternative approach immediately
|
|
|
|
|
|
|
|
|
|
|
|
5. EXAMPLE INTERACTION:
|
|
|
|
|
|
|
|
|
|
|
|
good example:
|
|
|
|
|
|
|
|
|
|
|
|
\`\`\`json:mcp:filesystem
|
|
|
|
|
|
{
|
|
|
|
|
|
"method": "tools/call",
|
|
|
|
|
|
"params": {
|
|
|
|
|
|
"name": "list_allowed_directories",
|
|
|
|
|
|
"arguments": {}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
\`\`\`"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
\`\`\`json:mcp-response:filesystem
|
|
|
|
|
|
{
|
|
|
|
|
|
"method": "tools/call",
|
|
|
|
|
|
"params": {
|
|
|
|
|
|
"name": "write_file",
|
|
|
|
|
|
"arguments": {
|
|
|
|
|
|
"path": "/Users/river/dev/nextchat/test/joke.txt",
|
|
|
|
|
|
"content": "为什么数学书总是感到忧伤?因为它有太多的问题。"
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
\`\`\`
|
|
|
|
|
|
|
|
|
|
|
|
follwing is the wrong! mcp json example:
|
|
|
|
|
|
|
|
|
|
|
|
\`\`\`json:mcp:filesystem
|
|
|
|
|
|
{
|
|
|
|
|
|
"method": "write_file",
|
|
|
|
|
|
"params": {
|
|
|
|
|
|
"path": "NextChat_Information.txt",
|
|
|
|
|
|
"content": "1"
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
\`\`\`
|
|
|
|
|
|
|
|
|
|
|
|
This is wrong because the method is not tools/call.
|
|
|
|
|
|
|
|
|
|
|
|
\`\`\`{
|
|
|
|
|
|
"method": "search_repositories",
|
|
|
|
|
|
"params": {
|
|
|
|
|
|
"query": "2oeee"
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
\`\`\`
|
|
|
|
|
|
|
|
|
|
|
|
This is wrong because the method is not tools/call.!!!!!!!!!!!
|
|
|
|
|
|
|
|
|
|
|
|
the right format is:
|
|
|
|
|
|
\`\`\`json:mcp:filesystem
|
|
|
|
|
|
{
|
|
|
|
|
|
"method": "tools/call",
|
|
|
|
|
|
"params": {
|
|
|
|
|
|
"name": "search_repositories",
|
|
|
|
|
|
"arguments": {
|
|
|
|
|
|
"query": "2oeee"
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
\`\`\`
|
|
|
|
|
|
|
|
|
|
|
|
please follow the format strictly ONLY use tools/call method!!!!!!!!!!!
|
|
|
|
|
|
|
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
|
|
export const SUMMARIZE_MODEL = "gpt-4o-mini";
|
|
|
|
|
|
export const GEMINI_SUMMARIZE_MODEL = "gemini-pro";
|
|
|
|
|
|
export const DEEPSEEK_SUMMARIZE_MODEL = "deepseek-ai/DeepSeek-V3";
|
|
|
|
|
|
|
|
|
|
|
|
export const KnowledgeCutOffDate: Record<string, string> = {
|
|
|
|
|
|
default: "2021-09",
|
|
|
|
|
|
"gpt-4-turbo": "2023-12",
|
|
|
|
|
|
"gpt-4-turbo-2024-04-09": "2023-12",
|
|
|
|
|
|
"gpt-4-turbo-preview": "2023-12",
|
|
|
|
|
|
"gpt-4o": "2023-10",
|
|
|
|
|
|
"gpt-4o-2024-05-13": "2023-10",
|
|
|
|
|
|
"gpt-4o-2024-08-06": "2023-10",
|
|
|
|
|
|
"gpt-4o-2024-11-20": "2023-10",
|
|
|
|
|
|
"chatgpt-4o-latest": "2023-10",
|
|
|
|
|
|
"gpt-4o-mini": "2023-10",
|
|
|
|
|
|
"gpt-4o-mini-2024-07-18": "2023-10",
|
|
|
|
|
|
"gpt-4-vision-preview": "2023-04",
|
|
|
|
|
|
"o1-mini-2024-09-12": "2023-10",
|
|
|
|
|
|
"o1-mini": "2023-10",
|
|
|
|
|
|
"o1-preview-2024-09-12": "2023-10",
|
|
|
|
|
|
"o1-preview": "2023-10",
|
|
|
|
|
|
"o1-2024-12-17": "2023-10",
|
|
|
|
|
|
o1: "2023-10",
|
|
|
|
|
|
"o3-mini-2025-01-31": "2023-10",
|
|
|
|
|
|
"o3-mini": "2023-10",
|
|
|
|
|
|
// After improvements,
|
|
|
|
|
|
// it's now easier to add "KnowledgeCutOffDate" instead of stupid hardcoding it, as was done previously.
|
|
|
|
|
|
"gemini-pro": "2023-12",
|
|
|
|
|
|
"gemini-pro-vision": "2023-12",
|
|
|
|
|
|
"deepseek-chat": "2024-07",
|
|
|
|
|
|
"deepseek-coder": "2024-07",
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const DEFAULT_TTS_ENGINE = "OpenAI-TTS";
|
|
|
|
|
|
export const DEFAULT_TTS_ENGINES = ["OpenAI-TTS", "Edge-TTS"];
|
|
|
|
|
|
export const DEFAULT_TTS_MODEL = "tts-1";
|
|
|
|
|
|
export const DEFAULT_TTS_VOICE = "alloy";
|
|
|
|
|
|
export const DEFAULT_TTS_MODELS = ["tts-1", "tts-1-hd"];
|
|
|
|
|
|
export const DEFAULT_TTS_VOICES = [
|
|
|
|
|
|
"alloy",
|
|
|
|
|
|
"echo",
|
|
|
|
|
|
"fable",
|
|
|
|
|
|
"onyx",
|
|
|
|
|
|
"nova",
|
|
|
|
|
|
"shimmer",
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
export const VISION_MODEL_REGEXES = [
|
|
|
|
|
|
/vision/,
|
|
|
|
|
|
/gpt-4o/,
|
|
|
|
|
|
/claude-3/,
|
|
|
|
|
|
/gemini-1\.5/,
|
|
|
|
|
|
/gemini-exp/,
|
|
|
|
|
|
/gemini-2\.0/,
|
|
|
|
|
|
/learnlm/,
|
|
|
|
|
|
/qwen-vl/,
|
|
|
|
|
|
/qwen2-vl/,
|
|
|
|
|
|
/gpt-4-turbo(?!.*preview)/, // Matches "gpt-4-turbo" but not "gpt-4-turbo-preview"
|
|
|
|
|
|
/^dall-e-3$/, // Matches exactly "dall-e-3"
|
|
|
|
|
|
/glm-4v/,
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
export const EXCLUDE_VISION_MODEL_REGEXES = [/claude-3-5-haiku-20241022/];
|
|
|
|
|
|
|
|
|
|
|
|
const siliconflowModels = [
|
|
|
|
|
|
"deepseek-ai/DeepSeek-V3",
|
|
|
|
|
|
"deepseek-ai/DeepSeek-R1",
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
let seq = 1000; // 内置的模型序号生成器从1000开始
|
|
|
|
|
|
export const DEFAULT_MODELS = [
|
|
|
|
|
|
...siliconflowModels.map((name) => ({
|
|
|
|
|
|
name,
|
|
|
|
|
|
available: true,
|
|
|
|
|
|
sorted: seq++,
|
|
|
|
|
|
provider: {
|
|
|
|
|
|
id: "siliconflow",
|
|
|
|
|
|
providerName: "SiliconFlow",
|
|
|
|
|
|
providerType: "siliconflow",
|
|
|
|
|
|
sorted: 14,
|
|
|
|
|
|
},
|
|
|
|
|
|
})),
|
|
|
|
|
|
] as const;
|
|
|
|
|
|
|
|
|
|
|
|
export const CHAT_PAGE_SIZE = 15;
|
|
|
|
|
|
export const MAX_RENDER_MSG_COUNT = 45;
|
|
|
|
|
|
|
|
|
|
|
|
// some famous webdav endpoints
|
|
|
|
|
|
export const internalAllowedWebDavEndpoints = [
|
|
|
|
|
|
"https://dav.jianguoyun.com/dav/",
|
|
|
|
|
|
"https://dav.dropdav.com/",
|
|
|
|
|
|
"https://dav.box.com/dav",
|
|
|
|
|
|
"https://nanao.teracloud.jp/dav/",
|
|
|
|
|
|
"https://bora.teracloud.jp/dav/",
|
|
|
|
|
|
"https://webdav.4shared.com/",
|
|
|
|
|
|
"https://dav.idrivesync.com",
|
|
|
|
|
|
"https://webdav.yandex.com",
|
|
|
|
|
|
"https://app.koofr.net/dav/Koofr",
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
export const DEFAULT_GA_ID = "G-89WN60ZK2E";
|
|
|
|
|
|
|
|
|
|
|
|
export const SAAS_CHAT_URL = "https://nextchat.dev/chat";
|
|
|
|
|
|
export const SAAS_CHAT_UTM_URL = "https://nextchat.dev/chat?utm=github";
|