mirror of
https://github.com/lone-cloud/gerbil
synced 2026-06-03 19:54:44 -07:00
53 lines
1.3 KiB
TypeScript
53 lines
1.3 KiB
TypeScript
export const APP_NAME = 'gerbil';
|
|
export const PRODUCT_NAME = 'Gerbil';
|
|
|
|
export const CONFIG_FILE_NAME = 'config.json';
|
|
|
|
export const UI = {
|
|
HEADER_HEIGHT: 60,
|
|
} as const;
|
|
|
|
export const { HEADER_HEIGHT } = UI;
|
|
|
|
export const SERVER_READY_SIGNALS = {
|
|
KOBOLDCPP: 'Please connect to custom endpoint at',
|
|
SILLYTAVERN: 'SillyTavern is listening on',
|
|
} as const;
|
|
|
|
export * from './defaults';
|
|
|
|
export const GITHUB_API = {
|
|
BASE_URL: 'https://api.github.com',
|
|
KOBOLDCPP_REPO: 'LostRuins/koboldcpp',
|
|
KOBOLDCPP_ROCM_REPO: 'YellowRoseCx/koboldcpp-rocm',
|
|
GERBIL_REPO: 'lone-cloud/gerbil',
|
|
get LATEST_RELEASE_URL() {
|
|
return `${this.BASE_URL}/repos/${this.KOBOLDCPP_REPO}/releases/latest`;
|
|
},
|
|
get ALL_RELEASES_URL() {
|
|
return `${this.BASE_URL}/repos/${this.KOBOLDCPP_REPO}/releases`;
|
|
},
|
|
get ROCM_LATEST_RELEASE_URL() {
|
|
return `${this.BASE_URL}/repos/${this.KOBOLDCPP_ROCM_REPO}/releases/latest`;
|
|
},
|
|
} as const;
|
|
|
|
export const ASSET_SUFFIXES = {
|
|
ROCM: 'rocm',
|
|
NOCUDA: 'nocuda',
|
|
OLDPC: 'oldpc',
|
|
} as const;
|
|
|
|
export const ROCM = {
|
|
LINUX: {
|
|
BINARY_NAME: 'koboldcpp-linux-x64-rocm',
|
|
DOWNLOAD_URL: 'https://koboldai.org/cpplinuxrocm',
|
|
SIZE_BYTES_APPROX: 1024 * 1024 * 1024,
|
|
},
|
|
} as const;
|
|
|
|
export const FRONTENDS = {
|
|
KOBOLDAI_LITE: 'KoboldAI Lite',
|
|
STABLE_UI: 'Stable UI',
|
|
SILLYTAVERN: 'SillyTavern',
|
|
} as const;
|