metrillm 0.2.2 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/dist/index.mjs +658 -508
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
> Think Geekbench, but for local LLMs on your actual hardware.
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
npm install -g metrillm
|
|
16
|
+
npm install -g metrillm@latest
|
|
17
17
|
metrillm bench
|
|
18
18
|
```
|
|
19
19
|
|
|
@@ -58,12 +58,12 @@ metrillm bench
|
|
|
58
58
|
|
|
59
59
|
```bash
|
|
60
60
|
# Install globally
|
|
61
|
-
npm install -g metrillm
|
|
61
|
+
npm install -g metrillm@latest
|
|
62
62
|
metrillm bench
|
|
63
63
|
|
|
64
64
|
# Alternative package managers
|
|
65
|
-
pnpm add -g metrillm
|
|
66
|
-
bun add -g metrillm
|
|
65
|
+
pnpm add -g metrillm@latest
|
|
66
|
+
bun add -g metrillm@latest
|
|
67
67
|
|
|
68
68
|
# Homebrew
|
|
69
69
|
brew install MetriLLM/metrillm/metrillm
|
|
@@ -122,7 +122,7 @@ PowerShell's default execution policy blocks npm global scripts. If you see `PSS
|
|
|
122
122
|
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned
|
|
123
123
|
```
|
|
124
124
|
|
|
125
|
-
Alternatively, use `npx metrillm` which bypasses the issue entirely.
|
|
125
|
+
Alternatively, use `npx metrillm@latest` which bypasses the issue entirely.
|
|
126
126
|
|
|
127
127
|
## Runtime Backends
|
|
128
128
|
|