Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions docs/tui.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,8 @@ Press `S` to open the hardware simulation popup. Override RAM, VRAM, and CPU cor

When simulation is active, a `SIM` badge appears in the system bar and status bar. The entire model table reflects the simulated hardware until you reset.

**Cluster mode (`--cluster`):** Simulation operates on the cluster's aggregate specs. The VRAM field is per-GPU and applies uniformly to every GPU across all nodes; RAM and CPU cores are cluster-wide totals. Fit and tokens/second estimates do not model interconnect overhead between nodes, so simulated multi-node throughput is optimistic. Confirming the popup without edits applies the simulation availability model (90% of total RAM) rather than the cluster profile's default 85% reservation.

### Advanced Configuration (`A`)

Press `A` to open the Advanced Configuration popup. This panel lets you tune the parameters behind TPS estimation, run mode penalties, and composite scoring — addressing [issue #449](https://github.com/AlexsJones/llmfit/issues/449) where tok/s was overestimated for certain models (e.g., Qwen3 30B).
Expand Down
1 change: 1 addition & 0 deletions llmfit-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
yaml_serde = "0.10.4"
sysinfo = "0.39"
toml = "0.8"
ureq = { version = "3.2", features = ["json"] }
which = "8.0.2"

Expand Down
Loading