Views
No views yet


| Tag | What it does |
|---|---|
polish | fixes grammar and flow, keeps your meaning and tone |
concise | says the same thing in fewer words |
formal | professional tone |
friendly | warm, casual tone |
typos | spelling only, never rephrases |
bullets | turns prose into a markdown bullet list |
prompt | sharpens a vague LLM prompt into a precise one |
expand | grows a terse note into a fuller message: same meaning, no invented facts |
1pip install mlx-lm
2mlx_lm.generate --model suraj10620/stark-1.5b \
3 --system-prompt "polish" \
4 --prompt "i tested the fix on staging and it seem to working fine now"mlx-community/Qwen2.5-1.5B-Instruct-4bit (QLoRA on the quantized
model), fused into this standalone model with mlx_lm fuse.typos. No user or
customer data. The seeded generator and training script are in the
GitHub repo (model/), so
the model is reproducible end-to-end.1mlx_lm.server --model suraj10620/stark-1.5b --port 8765
2curl -s localhost:8765/v1/chat/completions -d '{
3 "messages": [{"role":"system","content":"concise"},
4 {"role":"user","content":"I just wanted to quickly reach out to ask whether..."}],
5 "temperature": 0.2, "max_tokens": 512
6}'