cachegate 1.4.0 → 1.4.1

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.
Files changed (2) hide show
  1. package/README.md +1 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -7,12 +7,6 @@ A self-hostable, OpenAI-compatible proxy that routes LLM requests to the
7
7
  cheapest currently-healthy provider, caches responses both exactly and
8
8
  semantically, and tracks cost and latency per call.
9
9
 
10
- Would rather not run it yourself? [Cachegate Cloud](https://cachegate.memocodesystem.com)
11
- is a hosted version of this same engine — BYOK, so you're never paying
12
- us for tokens, only for the caching/routing layer on top. Everything
13
- below in this README describes the engine itself; both this repo and
14
- the hosted product share it.
15
-
16
10
  ## Why this instead of LiteLLM / Portkey / OpenRouter?
17
11
 
18
12
  Those are all excellent, and this doesn't try to out-feature them (140+
@@ -41,10 +35,7 @@ fills instead:
41
35
 
42
36
  - **Not a hosted service.** There's no cloud offering, no login, no
43
37
  billing, no multi-tenant key custody here — this is the engine you
44
- run yourself. If you want that instead, [Cachegate Cloud](https://cachegate.memocodesystem.com)
45
- is a separate, closed product built on top of this same engine — not
46
- a fork of this one, and not something this repository will ever grow
47
- into. This project intentionally doesn't ship the pieces (billing,
38
+ run yourself. This project intentionally doesn't ship the pieces (billing,
48
39
  multi-tenant key custody, a login system) that a competing hosted
49
40
  offering would need, and isn't looking for PRs that add them (see
50
41
  `CONTRIBUTING.md`'s scope note) — not because the license forbids it
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cachegate",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Self-hostable, OpenAI-compatible LLM proxy: routes to the cheapest healthy provider, caches responses exactly and semantically, tracks cost and latency per call.",
5
5
  "license": "MIT",
6
6
  "main": "server.js",