constant.ts 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  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. if (modelName === "ernie-speed-128k") {
  115. endpoint = "ernie-speed-128k";
  116. }
  117. if (modelName === "ernie-speed-8k") {
  118. endpoint = "ernie_speed";
  119. }
  120. return `rpc/2.0/ai_custom/v1/wenxinworkshop/chat/${endpoint}`;
  121. },
  122. };
  123. export const ByteDance = {
  124. ExampleEndpoint: "https://ark.cn-beijing.volces.com/api/",
  125. ChatPath: "api/v3/chat/completions",
  126. };
  127. export const Alibaba = {
  128. ExampleEndpoint: ALIBABA_BASE_URL,
  129. ChatPath: "v1/services/aigc/text-generation/generation",
  130. };
  131. export const DEFAULT_INPUT_TEMPLATE = `{{input}}`; // input / time / model / lang
  132. // export const DEFAULT_SYSTEM_TEMPLATE = `
  133. // You are ChatGPT, a large language model trained by {{ServiceProvider}}.
  134. // Knowledge cutoff: {{cutoff}}
  135. // Current model: {{model}}
  136. // Current time: {{time}}
  137. // Latex inline: $x^2$
  138. // Latex block: $$e=mc^2$$
  139. // `;
  140. export const DEFAULT_SYSTEM_TEMPLATE = `
  141. You are ChatGPT, a large language model trained by {{ServiceProvider}}.
  142. Knowledge cutoff: {{cutoff}}
  143. Current model: {{model}}
  144. Current time: {{time}}
  145. Latex inline: \\(x^2\\)
  146. Latex block: $$e=mc^2$$
  147. `;
  148. export const SUMMARIZE_MODEL = "gpt-3.5-turbo";
  149. export const GEMINI_SUMMARIZE_MODEL = "gemini-pro";
  150. export const KnowledgeCutOffDate: Record<string, string> = {
  151. default: "2021-09",
  152. "gpt-4-turbo": "2023-12",
  153. "gpt-4-turbo-2024-04-09": "2023-12",
  154. "gpt-4-turbo-preview": "2023-12",
  155. "gpt-4o": "2023-10",
  156. "gpt-4o-2024-05-13": "2023-10",
  157. "gpt-4o-mini": "2023-10",
  158. "gpt-4o-mini-2024-07-18": "2023-10",
  159. "gpt-4-vision-preview": "2023-04",
  160. // After improvements,
  161. // it's now easier to add "KnowledgeCutOffDate" instead of stupid hardcoding it, as was done previously.
  162. "gemini-pro": "2023-12",
  163. "gemini-pro-vision": "2023-12",
  164. };
  165. const openaiModels = [
  166. "gpt-3.5-turbo",
  167. "gpt-3.5-turbo-1106",
  168. "gpt-3.5-turbo-0125",
  169. "gpt-4",
  170. "gpt-4-0613",
  171. "gpt-4-32k",
  172. "gpt-4-32k-0613",
  173. "gpt-4-turbo",
  174. "gpt-4-turbo-preview",
  175. "gpt-4o",
  176. "gpt-4o-2024-05-13",
  177. "gpt-4o-mini",
  178. "gpt-4o-mini-2024-07-18",
  179. "gpt-4-vision-preview",
  180. "gpt-4-turbo-2024-04-09",
  181. "gpt-4-1106-preview",
  182. ];
  183. const googleModels = [
  184. "gemini-1.0-pro",
  185. "gemini-1.5-pro-latest",
  186. "gemini-1.5-flash-latest",
  187. "gemini-pro-vision",
  188. ];
  189. const anthropicModels = [
  190. "claude-instant-1.2",
  191. "claude-2.0",
  192. "claude-2.1",
  193. "claude-3-sonnet-20240229",
  194. "claude-3-opus-20240229",
  195. "claude-3-haiku-20240307",
  196. "claude-3-5-sonnet-20240620",
  197. ];
  198. const baiduModels = [
  199. "ernie-4.0-turbo-8k",
  200. "ernie-4.0-8k",
  201. "ernie-4.0-8k-preview",
  202. "ernie-4.0-8k-preview-0518",
  203. "ernie-4.0-8k-latest",
  204. "ernie-3.5-8k",
  205. "ernie-3.5-8k-0205",
  206. "ernie-speed-128k",
  207. "ernie-speed-8k",
  208. "ernie-lite-8k",
  209. "ernie-tiny-8k"
  210. ];
  211. const bytedanceModels = [
  212. "Doubao-lite-4k",
  213. "Doubao-lite-32k",
  214. "Doubao-lite-128k",
  215. "Doubao-pro-4k",
  216. "Doubao-pro-32k",
  217. "Doubao-pro-128k",
  218. ];
  219. const alibabaModes = [
  220. "qwen-turbo",
  221. "qwen-plus",
  222. "qwen-max",
  223. "qwen-max-0428",
  224. "qwen-max-0403",
  225. "qwen-max-0107",
  226. "qwen-max-longcontext",
  227. ];
  228. export const DEFAULT_MODELS = [
  229. ...openaiModels.map((name) => ({
  230. name,
  231. available: true,
  232. provider: {
  233. id: "openai",
  234. providerName: "OpenAI",
  235. providerType: "openai",
  236. },
  237. })),
  238. ...openaiModels.map((name) => ({
  239. name,
  240. available: true,
  241. provider: {
  242. id: "azure",
  243. providerName: "Azure",
  244. providerType: "azure",
  245. },
  246. })),
  247. ...googleModels.map((name) => ({
  248. name,
  249. available: true,
  250. provider: {
  251. id: "google",
  252. providerName: "Google",
  253. providerType: "google",
  254. },
  255. })),
  256. ...anthropicModels.map((name) => ({
  257. name,
  258. available: true,
  259. provider: {
  260. id: "anthropic",
  261. providerName: "Anthropic",
  262. providerType: "anthropic",
  263. },
  264. })),
  265. ...baiduModels.map((name) => ({
  266. name,
  267. available: true,
  268. provider: {
  269. id: "baidu",
  270. providerName: "Baidu",
  271. providerType: "baidu",
  272. },
  273. })),
  274. ...bytedanceModels.map((name) => ({
  275. name,
  276. available: true,
  277. provider: {
  278. id: "bytedance",
  279. providerName: "ByteDance",
  280. providerType: "bytedance",
  281. },
  282. })),
  283. ...alibabaModes.map((name) => ({
  284. name,
  285. available: true,
  286. provider: {
  287. id: "alibaba",
  288. providerName: "Alibaba",
  289. providerType: "alibaba",
  290. },
  291. })),
  292. ] as const;
  293. export const CHAT_PAGE_SIZE = 15;
  294. export const MAX_RENDER_MSG_COUNT = 45;
  295. // some famous webdav endpoints
  296. export const internalAllowedWebDavEndpoints = [
  297. "https://dav.jianguoyun.com/dav/",
  298. "https://dav.dropdav.com/",
  299. "https://dav.box.com/dav",
  300. "https://nanao.teracloud.jp/dav/",
  301. "https://bora.teracloud.jp/dav/",
  302. "https://webdav.4shared.com/",
  303. "https://dav.idrivesync.com",
  304. "https://webdav.yandex.com",
  305. "https://app.koofr.net/dav/Koofr",
  306. ];