constant.ts 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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_CORS_HOST = "https://a.nextweb.fun";
  11. export const DEFAULT_API_HOST = `${DEFAULT_CORS_HOST}/api/proxy`;
  12. export const OPENAI_BASE_URL = "https://api.openai.com";
  13. export enum Path {
  14. Home = "/",
  15. Chat = "/chat",
  16. Settings = "/settings",
  17. NewChat = "/new-chat",
  18. Masks = "/masks",
  19. Auth = "/auth",
  20. }
  21. export enum ApiPath {
  22. Cors = "/api/cors",
  23. OpenAI = "/api/openai",
  24. }
  25. export enum SlotID {
  26. AppBody = "app-body",
  27. CustomModel = "custom-model",
  28. }
  29. export enum FileName {
  30. Masks = "masks.json",
  31. Prompts = "prompts.json",
  32. }
  33. export enum StoreKey {
  34. Chat = "chat-next-web-store",
  35. Access = "access-control",
  36. Config = "app-config",
  37. Mask = "mask-store",
  38. Prompt = "prompt-store",
  39. Update = "chat-update",
  40. Sync = "sync",
  41. }
  42. export const DEFAULT_SIDEBAR_WIDTH = 300;
  43. export const MAX_SIDEBAR_WIDTH = 500;
  44. export const MIN_SIDEBAR_WIDTH = 230;
  45. export const NARROW_SIDEBAR_WIDTH = 100;
  46. export const ACCESS_CODE_PREFIX = "nk-";
  47. export const LAST_INPUT_KEY = "last-input";
  48. export const UNFINISHED_INPUT = (id: string) => "unfinished-input-" + id;
  49. export const STORAGE_KEY = "chatgpt-next-web";
  50. export const REQUEST_TIMEOUT_MS = 60000;
  51. export const EXPORT_MESSAGE_CLASS_NAME = "export-markdown";
  52. export enum ServiceProvider {
  53. OpenAI = "OpenAI",
  54. Azure = "Azure",
  55. }
  56. export const OpenaiPath = {
  57. ChatPath: "v1/chat/completions",
  58. UsagePath: "dashboard/billing/usage",
  59. SubsPath: "dashboard/billing/subscription",
  60. ListModelPath: "v1/models",
  61. };
  62. export const Azure = {
  63. ExampleEndpoint: "https://{resource-url}/openai/deployments/{deploy-id}",
  64. };
  65. export const DEFAULT_INPUT_TEMPLATE = `{{input}}`; // input / time / model / lang
  66. export const DEFAULT_SYSTEM_TEMPLATE = `
  67. You are ChatGPT, a large language model trained by OpenAI.
  68. Knowledge cutoff: {{cutoff}}
  69. Current model: {{model}}
  70. Current time: {{time}}
  71. Latex inline: $x^2$
  72. Latex block: $$e=mc^2$$
  73. `;
  74. export const SUMMARIZE_MODEL = "gpt-3.5-turbo";
  75. export const KnowledgeCutOffDate: Record<string, string> = {
  76. default: "2021-09",
  77. "gpt-4-1106-preview": "2023-04",
  78. "gpt-4-vision-preview": "2023-04",
  79. };
  80. export const DEFAULT_MODELS = [
  81. {
  82. name: "gpt-4",
  83. available: true,
  84. },
  85. {
  86. name: "gpt-4-0314",
  87. available: true,
  88. },
  89. {
  90. name: "gpt-4-0613",
  91. available: true,
  92. },
  93. {
  94. name: "gpt-4-32k",
  95. available: true,
  96. },
  97. {
  98. name: "gpt-4-32k-0314",
  99. available: true,
  100. },
  101. {
  102. name: "gpt-4-32k-0613",
  103. available: true,
  104. },
  105. {
  106. name: "gpt-4-1106-preview",
  107. available: true,
  108. },
  109. {
  110. name: "gpt-4-vision-preview",
  111. available: true,
  112. },
  113. {
  114. name: "gpt-3.5-turbo",
  115. available: true,
  116. },
  117. {
  118. name: "gpt-3.5-turbo-0301",
  119. available: true,
  120. },
  121. {
  122. name: "gpt-3.5-turbo-0613",
  123. available: true,
  124. },
  125. {
  126. name: "gpt-3.5-turbo-1106",
  127. available: true,
  128. },
  129. {
  130. name: "gpt-3.5-turbo-16k",
  131. available: true,
  132. },
  133. {
  134. name: "gpt-3.5-turbo-16k-0613",
  135. available: true,
  136. },
  137. ] as const;
  138. export const CHAT_PAGE_SIZE = 15;
  139. export const MAX_RENDER_MSG_COUNT = 45;