Spaces:
Build error
Build error
export const OWNER = "A N I M A"; | |
export const REPO = ""; | |
export const REPO_URL = `https://github.com/${OWNER}/${REPO}`; | |
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 DEFAULT_CORS_HOST = "anima-nexus-test.vercel.app"; | |
export const DEFAULT_API_HOST = `${DEFAULT_CORS_HOST}/api/proxy`; | |
export const OPENAI_BASE_URL = "https://api.openai.com"; | |
export enum Path { | |
Home = "/", | |
Chat = "/chat", | |
Settings = "/settings", | |
NewChat = "/new-chat", | |
Masks = "/masks", | |
Plugins = "/plugins", | |
Auth = "/auth", | |
} | |
export enum ApiPath { | |
Cors = "/api/cors", | |
OpenAI = "/api/openai", | |
} | |
export enum SlotID { | |
AppBody = "app-body", | |
CustomModel = "custom-model", | |
} | |
export enum FileName { | |
Masks = "masks.json", | |
Plugins = "plugins.json", | |
Prompts = "prompts.json", | |
} | |
export enum StoreKey { | |
Chat = "chat-next-web-store", | |
Access = "access-control", | |
Config = "app-config", | |
Mask = "mask-store", | |
Plugin = "plugin-store", | |
Prompt = "prompt-store", | |
Update = "chat-update", | |
Sync = "sync", | |
} | |
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 EXPORT_MESSAGE_CLASS_NAME = "export-markdown"; | |
export enum ServiceProvider { | |
OpenAI = "OpenAI", | |
} | |
export const OpenaiPath = { | |
ChatPath: "v1/chat/completions", | |
UsagePath: "dashboard/billing/usage", | |
SubsPath: "dashboard/billing/subscription", | |
ListModelPath: "v1/models", | |
}; | |
export const DEFAULT_INPUT_TEMPLATE = `{{input}}`; // input / time / model / lang | |
export const DEFAULT_SYSTEM_TEMPLATE = `You will help the user and provide them with whatever information they require.`; | |
export const SUMMARIZE_MODEL = "A N I M A"; | |
export const KnowledgeCutOffDate: Record<string, string> = { | |
default: "11-2023", | |
}; | |
export const DEFAULT_MODELS = [ | |
{ | |
name: "A N I M A", | |
available: true, | |
}, | |
] as const; | |
export const CHAT_PAGE_SIZE = 15; | |
export const MAX_RENDER_MSG_COUNT = 45; |