@llmtrim/cli 0.1.4 → 0.1.5
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 +24 -0
- package/package.json +8 -8
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# llmtrim
|
|
2
|
+
|
|
3
|
+
**Cut ~66% off your LLM bill.** A drop-in local HTTPS proxy that compresses every LLM
|
|
4
|
+
request and reply — input, output, and cache — with zero extra model calls. Works with
|
|
5
|
+
Claude Code, Cursor, Cline, and any tool that talks to OpenAI / Anthropic / Google /
|
|
6
|
+
DeepSeek / Mistral & co. Answers unchanged: every cut is re-counted with the provider's
|
|
7
|
+
real tokenizer and auto-reverted if it doesn't save.
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g @llmtrim/cli && llmtrim setup
|
|
11
|
+
# open a new shell, then watch the bill shrink:
|
|
12
|
+
llmtrim status --watch
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
`setup` is transparent and fully reversible (`llmtrim uninstall`): a local CA, a proxy
|
|
16
|
+
block in your shell profile, a background service. Everything runs locally — nothing is
|
|
17
|
+
ever sent to us.
|
|
18
|
+
|
|
19
|
+
This package installs a prebuilt native binary for your platform (Linux, macOS, Windows;
|
|
20
|
+
x64 & arm64) — no Rust toolchain needed.
|
|
21
|
+
|
|
22
|
+
Docs, benchmarks (112 live A/B cases), and source: **https://github.com/fkiene/llmtrim**
|
|
23
|
+
|
|
24
|
+
License: AGPL-3.0-only
|
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@llmtrim/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Cut your LLM bill: drop-in proxy that compresses input, output, and cache. Any provider, answers unchanged.",
|
|
5
5
|
"repository": "https://github.com/fkiene/llmtrim",
|
|
6
6
|
"homepage": "https://github.com/fkiene/llmtrim#readme",
|
|
7
7
|
"license": "AGPL-3.0-only",
|
|
8
8
|
"keywords": ["llm", "tokens", "compression", "proxy", "openai", "anthropic", "claude"],
|
|
9
9
|
"bin": { "llmtrim": "bin/llmtrim.js" },
|
|
10
|
-
"files": ["bin"],
|
|
10
|
+
"files": ["bin", "README.md"],
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"@llmtrim/linux-x64": "0.1.
|
|
13
|
-
"@llmtrim/linux-arm64": "0.1.
|
|
14
|
-
"@llmtrim/darwin-x64": "0.1.
|
|
15
|
-
"@llmtrim/darwin-arm64": "0.1.
|
|
16
|
-
"@llmtrim/win32-x64": "0.1.
|
|
17
|
-
"@llmtrim/win32-arm64": "0.1.
|
|
12
|
+
"@llmtrim/linux-x64": "0.1.5",
|
|
13
|
+
"@llmtrim/linux-arm64": "0.1.5",
|
|
14
|
+
"@llmtrim/darwin-x64": "0.1.5",
|
|
15
|
+
"@llmtrim/darwin-arm64": "0.1.5",
|
|
16
|
+
"@llmtrim/win32-x64": "0.1.5",
|
|
17
|
+
"@llmtrim/win32-arm64": "0.1.5"
|
|
18
18
|
}
|
|
19
19
|
}
|