constant.ts 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  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-4-vision-preview": "2023-04",
  158. // After improvements,
  159. // it's now easier to add "KnowledgeCutOffDate" instead of stupid hardcoding it, as was done previously.
  160. "gemini-pro": "2023-12",
  161. "gemini-pro-vision": "2023-12",
  162. };
  163. const openaiModels = [
  164. "gpt-3.5-turbo",
  165. "gpt-3.5-turbo-1106",
  166. "gpt-3.5-turbo-0125",
  167. "gpt-4",
  168. "gpt-4-0613",
  169. "gpt-4-32k",
  170. "gpt-4-32k-0613",
  171. "gpt-4-turbo",
  172. "gpt-4-turbo-preview",
  173. "gpt-4o",
  174. "gpt-4o-2024-05-13",
  175. "gpt-4-vision-preview",
  176. "gpt-4-turbo-2024-04-09",
  177. "gpt-4-1106-preview",
  178. ];
  179. const googleModels = [
  180. "gemini-1.0-pro",
  181. "gemini-1.5-pro-latest",
  182. "gemini-1.5-flash-latest",
  183. "gemini-pro-vision",
  184. ];
  185. const anthropicModels = [
  186. "claude-instant-1.2",
  187. "claude-2.0",
  188. "claude-2.1",
  189. "claude-3-sonnet-20240229",
  190. "claude-3-opus-20240229",
  191. "claude-3-haiku-20240307",
  192. "claude-3-5-sonnet-20240620",
  193. ];
  194. const baiduModels = [
  195. "ernie-4.0-turbo-8k",
  196. "ernie-4.0-8k",
  197. "ernie-4.0-8k-preview",
  198. "ernie-4.0-8k-preview-0518",
  199. "ernie-4.0-8k-latest",
  200. "ernie-3.5-8k",
  201. "ernie-3.5-8k-0205",
  202. "ernie-speed-128k",
  203. "ernie-speed-8k"
  204. ];
  205. const bytedanceModels = [
  206. "Doubao-lite-4k",
  207. "Doubao-lite-32k",
  208. "Doubao-lite-128k",
  209. "Doubao-pro-4k",
  210. "Doubao-pro-32k",
  211. "Doubao-pro-128k",
  212. ];
  213. const alibabaModes = [
  214. "qwen-turbo",
  215. "qwen-plus",
  216. "qwen-max",
  217. "qwen-max-0428",
  218. "qwen-max-0403",
  219. "qwen-max-0107",
  220. "qwen-max-longcontext",
  221. ];
  222. export const DEFAULT_MODELS = [
  223. ...openaiModels.map((name) => ({
  224. name,
  225. available: true,
  226. provider: {
  227. id: "openai",
  228. providerName: "OpenAI",
  229. providerType: "openai",
  230. },
  231. })),
  232. ...openaiModels.map((name) => ({
  233. name,
  234. available: true,
  235. provider: {
  236. id: "azure",
  237. providerName: "Azure",
  238. providerType: "azure",
  239. },
  240. })),
  241. ...googleModels.map((name) => ({
  242. name,
  243. available: true,
  244. provider: {
  245. id: "google",
  246. providerName: "Google",
  247. providerType: "google",
  248. },
  249. })),
  250. ...anthropicModels.map((name) => ({
  251. name,
  252. available: true,
  253. provider: {
  254. id: "anthropic",
  255. providerName: "Anthropic",
  256. providerType: "anthropic",
  257. },
  258. })),
  259. ...baiduModels.map((name) => ({
  260. name,
  261. available: true,
  262. provider: {
  263. id: "baidu",
  264. providerName: "Baidu",
  265. providerType: "baidu",
  266. },
  267. })),
  268. ...bytedanceModels.map((name) => ({
  269. name,
  270. available: true,
  271. provider: {
  272. id: "bytedance",
  273. providerName: "ByteDance",
  274. providerType: "bytedance",
  275. },
  276. })),
  277. ...alibabaModes.map((name) => ({
  278. name,
  279. available: true,
  280. provider: {
  281. id: "alibaba",
  282. providerName: "Alibaba",
  283. providerType: "alibaba",
  284. },
  285. })),
  286. ] as const;
  287. export const CHAT_PAGE_SIZE = 15;
  288. export const MAX_RENDER_MSG_COUNT = 45;
  289. // some famous webdav endpoints
  290. export const internalAllowedWebDavEndpoints = [
  291. "https://dav.jianguoyun.com/dav/",
  292. "https://dav.dropdav.com/",
  293. "https://dav.box.com/dav",
  294. "https://nanao.teracloud.jp/dav/",
  295. "https://bora.teracloud.jp/dav/",
  296. "https://webdav.4shared.com/",
  297. "https://dav.idrivesync.com",
  298. "https://webdav.yandex.com",
  299. "https://app.koofr.net/dav/Koofr",
  300. ];