Get PorchLM
One GGUF file. Runs in LM Studio, Ollama, llama.cpp, or a browser tab — nothing you type ever leaves your machine.
These builds are kept loaded and ready — pick one to try in chat straight away, or download the file.
Served straight from this machine. See the changelog for what changed in each release.
An in-browser demo (coming soon) will let you drop a .gguf file directly onto the page — no install, cached locally after the first load.
Place the file at ~/.lmstudio/models/PorchLM/PorchLM-F16-V10.gguf — the two-level publisher/model/file.gguf layout is required or it won’t appear.
Create a Modelfile:
FROM ./PorchLM-F16-V10.gguf PARAMETER temperature 0.9 PARAMETER top_k 40 PARAMETER top_p 0.95 PARAMETER repeat_penalty 1.15 PARAMETER num_ctx 1024
Then:
ollama create porchlm -f Modelfile && ollama run porchlm
llama-cli -m PorchLM-F16-V10.gguf -c 1024 -cnv
llama-quantize PorchLM-F16-V10.gguf PorchLM-Q4_K_M.gguf Q4_K_M
Very small models lose more to aggressive quantization than large ones — if quality drops noticeably, Q8_0 is the safer trade.
Already embedded in the GGUF’s chat template — most tools pick these up automatically, no manual configuration needed.