minor updates for kcpp update, dep updates

This commit is contained in:
Egor 2026-03-19 08:08:54 -07:00
parent 32692c0b34
commit b6935fa3af
4 changed files with 367 additions and 359 deletions

Binary file not shown.

View file

@ -34,9 +34,9 @@
"@codemirror/theme-one-dark": "^6.1.3", "@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.40.0", "@codemirror/view": "^6.40.0",
"@fontsource/inter": "^5.2.8", "@fontsource/inter": "^5.2.8",
"@huggingface/gguf": "^0.4.0", "@huggingface/gguf": "^0.4.1",
"@mantine/core": "^8.3.17", "@mantine/core": "^8.3.18",
"@mantine/hooks": "^8.3.17", "@mantine/hooks": "^8.3.18",
"@uiw/react-codemirror": "^4.25.8", "@uiw/react-codemirror": "^4.25.8",
"electron-updater": "^6.8.3", "electron-updater": "^6.8.3",
"execa": "^9.6.1", "execa": "^9.6.1",
@ -49,11 +49,11 @@
"rehype-raw": "^7.0.0", "rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0", "rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1", "remark-gfm": "^4.0.1",
"systeminformation": "^5.31.4", "systeminformation": "^5.31.5",
"winston": "^3.19.0", "winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0", "winston-daily-rotate-file": "^5.0.0",
"yauzl": "^3.2.1", "yauzl": "^3.2.1",
"zustand": "^5.0.11" "zustand": "^5.0.12"
}, },
"devDependencies": { "devDependencies": {
"@types/mime-types": "^3.0.1", "@types/mime-types": "^3.0.1",
@ -63,16 +63,16 @@
"@types/yauzl": "^2.10.3", "@types/yauzl": "^2.10.3",
"@vitejs/plugin-react": "^6.0.1", "@vitejs/plugin-react": "^6.0.1",
"cross-env": "^10.1.0", "cross-env": "^10.1.0",
"electron": "^41.0.2", "electron": "^41.0.3",
"electron-builder": "^26.8.1", "electron-builder": "^26.8.1",
"electron-vite": "^5.0.0", "electron-vite": "^5.0.0",
"jiti": "^2.6.1", "jiti": "^2.6.1",
"oxfmt": "^0.40.0", "oxfmt": "^0.41.0",
"oxlint": "^1.55.0", "oxlint": "^1.56.0",
"oxlint-tsgolint": "^0.17.0", "oxlint-tsgolint": "^0.17.0",
"rollup-plugin-visualizer": "^7.0.1", "rollup-plugin-visualizer": "^7.0.1",
"typescript": "^5.9.3", "typescript": "^5.9.3",
"vite": "^8.0.0" "vite": "^8.0.1"
}, },
"engines": { "engines": {
"node": ">=24.0.0" "node": ">=24.0.0"

683
pnpm-lock.yaml generated

File diff suppressed because it is too large Load diff

View file

@ -519,6 +519,21 @@ const COMMAND_LINE_ARGUMENTS = [
flag: '--admindir', flag: '--admindir',
metavar: '[directory]', metavar: '[directory]',
}, },
{
category: 'Administration',
default: 0,
description:
'Set an idle timeout in seconds after which KoboldCpp will automatically unload the current model.',
flag: '--adminunloadtimeout',
type: 'int',
},
{
category: 'Administration',
description:
'Router mode uses a reverse proxy router, allowing you to easily hotswap models and configs within a single request. Requires admin mode.',
flag: '--routermode',
type: 'boolean',
},
{ {
category: 'Horde Worker', category: 'Horde Worker',
default: '', default: '',
@ -596,7 +611,7 @@ const COMMAND_LINE_ARGUMENTS = [
}, },
{ {
category: 'Image Generation', category: 'Image Generation',
description: 'Uses a built-in VAE via TAE SD, which is very fast, and fixed bad VAEs.', description: 'Uses a built-in tiny VAE via TAE SD, which is very fast, and fixed bad VAEs.',
flag: '--sdvaeauto', flag: '--sdvaeauto',
type: 'boolean', type: 'boolean',
}, },
@ -610,11 +625,11 @@ const COMMAND_LINE_ARGUMENTS = [
}, },
{ {
category: 'Image Generation', category: 'Image Generation',
default: 1, default: '1.0',
description: 'Multiplier for the image LORA model to be applied.', description: 'Multipliers for the image LoRA model to be applied.',
flag: '--sdloramult', flag: '--sdloramult',
metavar: '[amount]', metavar: '[amounts]',
type: 'float', type: 'float[]',
}, },
{ {
category: 'Image Generation', category: 'Image Generation',