Option to set own context in launch menu? #66
Replies: 1 comment 1 reply
|
@PiotrZadka — shipped just now in PR #79 (commit # Reserve VRAM for desktop + browser + other GPU consumers:
GPU_MEMORY_UTILIZATION=0.85 bash scripts/switch.sh vllm/long-text
# Or trim context to free more headroom:
MAX_MODEL_LEN=90000 bash scripts/switch.sh vllm/long-text
# Or both:
MAX_MODEL_LEN=90000 GPU_MEMORY_UTILIZATION=0.85 \
bash scripts/switch.sh vllm/long-textExisting defaults preserved for anyone not setting the env — bit-for-bit identical CLI args reach vLLM if you don't override. Zero behavior change for the headless-server audience. Coverage: 18 vLLM composes (everything in Sub-24 GB tuning notes (from validating the change)A few things that surfaced when I tested the override mechanism:
If you want to share which compose you're targeting + a |
Uh oh!
There was an error while loading. Please reload this page.
Hey, thanks for the awesome work!
I was wondering, because I understand the idea of this is to run headless for maximum vram, however would it be possible to add option in launch menu to reduce context for each option, so that we can run it while in desktop mode (ex. plasma in cachy os) if we plan to use the server on same machine and not connect to it?
All reactions