constant.ts 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. export const OWNER = "Yidadaa";
  2. export const REPO = "ChatGPT-Next-Web";
  3. export const REPO_URL = `https://github.com/${OWNER}/${REPO}`;
  4. export const ISSUE_URL = `https://github.com/${OWNER}/${REPO}/issues`;
  5. export const UPDATE_URL = `${REPO_URL}#keep-updated`;
  6. export const RELEASE_URL = `${REPO_URL}/releases`;
  7. export const FETCH_COMMIT_URL = `https://api.github.com/repos/${OWNER}/${REPO}/commits?per_page=1`;
  8. export const FETCH_TAG_URL = `https://api.github.com/repos/${OWNER}/${REPO}/tags?per_page=1`;
  9. export const RUNTIME_CONFIG_DOM = "danger-runtime-config";
  10. export const DEFAULT_API_HOST = "https://api.nextchat.dev";
  11. export const OPENAI_BASE_URL = "https://api.openai.com";
  12. export const ANTHROPIC_BASE_URL = "https://api.anthropic.com";
  13. export const GEMINI_BASE_URL = "https://generativelanguage.googleapis.com/";
  14. export const BAIDU_BASE_URL = "https://aip.baidubce.com";
  15. export const BAIDU_OATUH_URL = `${BAIDU_BASE_URL}/oauth/2.0/token`;
  16. export const BYTEDANCE_BASE_URL = "https://ark.cn-beijing.volces.com";
  17. export const ALIBABA_BASE_URL = "https://dashscope.aliyuncs.com/api/";
  18. export enum Path {
  19. Home = "/",
  20. Chat = "/chat",
  21. Settings = "/settings",
  22. NewChat = "/new-chat",
  23. Masks = "/masks",
  24. Auth = "/auth",
  25. }
  26. export enum ApiPath {
  27. Cors = "",
  28. Azure = "/api/azure",
  29. OpenAI = "/api/openai",
  30. Anthropic = "/api/anthropic",
  31. Google = "/api/google",
  32. Baidu = "/api/baidu",
  33. ByteDance = "/api/bytedance",
  34. Alibaba = "/api/alibaba",
  35. }
  36. export enum SlotID {
  37. AppBody = "app-body",
  38. CustomModel = "custom-model",
  39. }
  40. export enum FileName {
  41. Masks = "masks.json",
  42. Prompts = "prompts.json",
  43. }
  44. export enum StoreKey {
  45. Chat = "chat-next-web-store",
  46. Access = "access-control",
  47. Config = "app-config",
  48. Mask = "mask-store",
  49. Prompt = "prompt-store",
  50. Update = "chat-update",
  51. Sync = "sync",
  52. }
  53. export const DEFAULT_SIDEBAR_WIDTH = 300;
  54. export const MAX_SIDEBAR_WIDTH = 500;
  55. export const MIN_SIDEBAR_WIDTH = 230;
  56. export const NARROW_SIDEBAR_WIDTH = 100;
  57. export const ACCESS_CODE_PREFIX = "nk-";
  58. export const LAST_INPUT_KEY = "last-input";
  59. export const UNFINISHED_INPUT = (id: string) => "unfinished-input-" + id;
  60. export const STORAGE_KEY = "chatgpt-next-web";
  61. export const REQUEST_TIMEOUT_MS = 60000;
  62. export const EXPORT_MESSAGE_CLASS_NAME = "export-markdown";
  63. export enum ServiceProvider {
  64. OpenAI = "OpenAI",
  65. Azure = "Azure",
  66. Google = "Google",
  67. Anthropic = "Anthropic",
  68. Baidu = "Baidu",
  69. ByteDance = "ByteDance",
  70. Alibaba = "Alibaba",
  71. }
  72. export enum ModelProvider {
  73. GPT = "GPT",
  74. GeminiPro = "GeminiPro",
  75. Claude = "Claude",
  76. Ernie = "Ernie",
  77. Doubao = "Doubao",
  78. Qwen = "Qwen",
  79. }
  80. export const Anthropic = {
  81. ChatPath: "v1/messages",
  82. ChatPath1: "v1/complete",
  83. ExampleEndpoint: "https://api.anthropic.com",
  84. Vision: "2023-06-01",
  85. };
  86. export const OpenaiPath = {
  87. ChatPath: "v1/chat/completions",
  88. UsagePath: "dashboard/billing/usage",
  89. SubsPath: "dashboard/billing/subscription",
  90. ListModelPath: "v1/models",
  91. };
  92. export const Azure = {
  93. ChatPath: (deployName: string, apiVersion: string) =>
  94. `deployments/${deployName}/chat/completions?api-version=${apiVersion}`,
  95. ExampleEndpoint: "https://{resource-url}/openai/deployments/{deploy-id}",
  96. };
  97. export const Google = {
  98. ExampleEndpoint: "https://generativelanguage.googleapis.com/",
  99. ChatPath: (modelName: string) => `v1beta/models/${modelName}:generateContent`,
  100. };
  101. export const Baidu = {
  102. ExampleEndpoint: BAIDU_BASE_URL,
  103. ChatPath: (modelName: string) => {
  104. let endpoint = modelName;
  105. if (modelName === "ernie-4.0-8k") {
  106. endpoint = "completions_pro";
  107. }
  108. if (modelName === "ernie-4.0-8k-preview-0518") {
  109. endpoint = "completions_adv_pro";
  110. }
  111. if (modelName === "ernie-3.5-8k") {
  112. endpoint = "completions";
  113. }
  114. return `rpc/2.0/ai_custom/v1/wenxinworkshop/chat/${endpoint}`;
  115. },
  116. };
  117. export const ByteDance = {
  118. ExampleEndpoint: "https://ark.cn-beijing.volces.com/api/",
  119. ChatPath: "api/v3/chat/completions",
  120. };
  121. export const Alibaba = {
  122. ExampleEndpoint: ALIBABA_BASE_URL,
  123. ChatPath: "v1/services/aigc/text-generation/generation",
  124. };
  125. export const DEFAULT_INPUT_TEMPLATE = `{{input}}`; // input / time / model / lang
  126. // export const DEFAULT_SYSTEM_TEMPLATE = `
  127. // You are ChatGPT, a large language model trained by {{ServiceProvider}}.
  128. // Knowledge cutoff: {{cutoff}}
  129. // Current model: {{model}}
  130. // Current time: {{time}}
  131. // Latex inline: $x^2$
  132. // Latex block: $$e=mc^2$$
  133. // `;
  134. export const DEFAULT_SYSTEM_TEMPLATE = `
  135. You are ChatGPT, a large language model trained by {{ServiceProvider}}.
  136. Knowledge cutoff: {{cutoff}}
  137. Current model: {{model}}
  138. Current time: {{time}}
  139. Latex inline: \\(x^2\\)
  140. Latex block: $$e=mc^2$$
  141. `;
  142. export const SUMMARIZE_MODEL = "gpt-3.5-turbo";
  143. export const GEMINI_SUMMARIZE_MODEL = "gemini-pro";
  144. export const KnowledgeCutOffDate: Record<string, string> = {
  145. default: "2021-09",
  146. "gpt-4-turbo": "2023-12",
  147. "gpt-4-turbo-2024-04-09": "2023-12",
  148. "gpt-4-turbo-preview": "2023-12",
  149. "gpt-4o": "2023-10",
  150. "gpt-4o-2024-05-13": "2023-10",
  151. "gpt-4-vision-preview": "2023-04",
  152. // After improvements,
  153. // it's now easier to add "KnowledgeCutOffDate" instead of stupid hardcoding it, as was done previously.
  154. "gemini-pro": "2023-12",
  155. "gemini-pro-vision": "2023-12",
  156. };
  157. const openaiModels = [
  158. "gpt-3.5-turbo",
  159. "gpt-3.5-turbo-1106",
  160. "gpt-3.5-turbo-0125",
  161. "gpt-4",
  162. "gpt-4-0613",
  163. "gpt-4-32k",
  164. "gpt-4-32k-0613",
  165. "gpt-4-turbo",
  166. "gpt-4-turbo-preview",
  167. "gpt-4o",
  168. "gpt-4o-2024-05-13",
  169. "gpt-4-vision-preview",
  170. "gpt-4-turbo-2024-04-09",
  171. "gpt-4-1106-preview",
  172. ];
  173. const googleModels = [
  174. "gemini-1.0-pro",
  175. "gemini-1.5-pro-latest",
  176. "gemini-1.5-flash-latest",
  177. "gemini-pro-vision",
  178. ];
  179. const anthropicModels = [
  180. "claude-instant-1.2",
  181. "claude-2.0",
  182. "claude-2.1",
  183. "claude-3-sonnet-20240229",
  184. "claude-3-opus-20240229",
  185. "claude-3-haiku-20240307",
  186. "claude-3-5-sonnet-20240620",
  187. ];
  188. const baiduModels = [
  189. "ernie-4.0-turbo-8k",
  190. "ernie-4.0-8k",
  191. "ernie-4.0-8k-preview",
  192. "ernie-4.0-8k-preview-0518",
  193. "ernie-4.0-8k-latest",
  194. "ernie-3.5-8k",
  195. "ernie-3.5-8k-0205",
  196. ];
  197. const bytedanceModels = [
  198. "Doubao-lite-4k",
  199. "Doubao-lite-32k",
  200. "Doubao-lite-128k",
  201. "Doubao-pro-4k",
  202. "Doubao-pro-32k",
  203. "Doubao-pro-128k",
  204. ];
  205. const alibabaModes = [
  206. "qwen-turbo",
  207. "qwen-plus",
  208. "qwen-max",
  209. "qwen-max-0428",
  210. "qwen-max-0403",
  211. "qwen-max-0107",
  212. "qwen-max-longcontext",
  213. ];
  214. export const DEFAULT_MODELS = [
  215. ...openaiModels.map((name) => ({
  216. name,
  217. available: true,
  218. provider: {
  219. id: "openai",
  220. providerName: "OpenAI",
  221. providerType: "openai",
  222. },
  223. })),
  224. ...openaiModels.map((name) => ({
  225. name,
  226. available: true,
  227. provider: {
  228. id: "azure",
  229. providerName: "Azure",
  230. providerType: "azure",
  231. },
  232. })),
  233. ...googleModels.map((name) => ({
  234. name,
  235. available: true,
  236. provider: {
  237. id: "google",
  238. providerName: "Google",
  239. providerType: "google",
  240. },
  241. })),
  242. ...anthropicModels.map((name) => ({
  243. name,
  244. available: true,
  245. provider: {
  246. id: "anthropic",
  247. providerName: "Anthropic",
  248. providerType: "anthropic",
  249. },
  250. })),
  251. ...baiduModels.map((name) => ({
  252. name,
  253. available: true,
  254. provider: {
  255. id: "baidu",
  256. providerName: "Baidu",
  257. providerType: "baidu",
  258. },
  259. })),
  260. ...bytedanceModels.map((name) => ({
  261. name,
  262. available: true,
  263. provider: {
  264. id: "bytedance",
  265. providerName: "ByteDance",
  266. providerType: "bytedance",
  267. },
  268. })),
  269. ...alibabaModes.map((name) => ({
  270. name,
  271. available: true,
  272. provider: {
  273. id: "alibaba",
  274. providerName: "Alibaba",
  275. providerType: "alibaba",
  276. },
  277. })),
  278. ] as const;
  279. export const CHAT_PAGE_SIZE = 15;
  280. export const MAX_RENDER_MSG_COUNT = 45;
  281. // some famous webdav endpoints
  282. export const internalAllowedWebDavEndpoints = [
  283. "https://dav.jianguoyun.com/dav/",
  284. "https://dav.dropdav.com/",
  285. "https://dav.box.com/dav",
  286. "https://nanao.teracloud.jp/dav/",
  287. "https://bora.teracloud.jp/dav/",
  288. "https://webdav.4shared.com/",
  289. "https://dav.idrivesync.com",
  290. "https://webdav.yandex.com",
  291. "https://app.koofr.net/dav/Koofr",
  292. ];