proxitor 0.16.0 → 0.17.0
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 +4 -2
- package/dist/cli.mjs +542 -137
- package/dist/cli.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -149,12 +149,14 @@ proxitor doctor # checks environment, config, key, network, port, version
|
|
|
149
149
|
|
|
150
150
|
It prints a clear report and exits non-zero if anything fails — handy from CI too (`--json`, `--offline`, `--timeout`).
|
|
151
151
|
|
|
152
|
-
While proxitor runs, it
|
|
152
|
+
While proxitor runs, it prints a classified per-request cache line — `HIT` / `PARTIAL` / `MISS` / `COLD` / `NOUSAGE`, the hit percentage, the provider that served the request, and the request type (`[main]`/`[side]`) — so you can see at a glance whether caching is actually helping:
|
|
153
153
|
|
|
154
154
|
```text
|
|
155
|
-
[
|
|
155
|
+
[a1b2] HIT 99% read 48640 in 48874 glm-4.5-air [main]
|
|
156
156
|
```
|
|
157
157
|
|
|
158
|
+
See **Configuration → [Cache observability](./docs/configuration.md#cache-observability)** for the full label reference, the `observability:` config block, and enriched dumps.
|
|
159
|
+
|
|
158
160
|
Quick health poke: `curl http://localhost:8828/health`.
|
|
159
161
|
|
|
160
162
|
### Tuning the cache
|