01
Endpoint switching
Move between the public endpoint, a local `/api/chat` route, or a self-hosted base server without editing the script.
/endpoint http://localhost:8000
02
Sampling controls
Adjust temperature, top-p, top-k, max tokens, repetition penalty, and no-repeat n-gram settings during a session.
/temp 0.7 · /top-p 0.9 · /max-new 200
03
Health checks
Probe model endpoints and inspect server information before running longer evaluation sessions.
/ping · /info
04
Conversation tools
Clear context, view history, save transcripts, retry the last generation, or undo the last exchange.
/history · /save FILE · /retry · /undo
05
SFT positives
Mark good replies and save positive examples for supervised fine-tuning datasets.
/good → data/sft_positive.jsonl
06
DPO pairs
Rewrite poor answers into chosen/rejected preference pairs for alignment experiments.
/bad · /rewrite → data/dpo_pairs.jsonl
07
Optional plugins
Drop plugin files into a /plugins folder, reload from the terminal, and extend the developer client without editing the core script.
/plugin · /plugin reload · /plugin help