@mrciphersmith/keryx 0.2.67 → 0.2.69
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 +9 -0
- package/dist/cli.js +1653 -1412
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -225,6 +225,15 @@ What is in it today:
|
|
|
225
225
|
gateway — OpenRouter, DeepSeek, Z.AI, Cerebras, Groq, Moonshot, Grok — plus an
|
|
226
226
|
offline fake provider for deterministic runs. Swapping the model does not
|
|
227
227
|
change the loop, the tools or the policy.
|
|
228
|
+
- **Custom file-backed providers.** Register any OpenAI-compatible endpoint —
|
|
229
|
+
including one on your own LAN — in `~/.local/share/keryx/llm-providers.json`;
|
|
230
|
+
it merges into the built-in provider list. The `/provider` wizard in the TUI
|
|
231
|
+
has an "add custom provider" entry that walks name → URL → key → models and
|
|
232
|
+
writes the file for you; a name that collides with a built-in provider is
|
|
233
|
+
rejected. Custom providers get a narrow, opt-in SSRF allowance for private
|
|
234
|
+
LAN hosts (RFC1918/CGNAT) as an explicit operator-trust boundary — built-in
|
|
235
|
+
providers never get it, and loopback/link-local metadata addresses stay
|
|
236
|
+
denied regardless.
|
|
228
237
|
- **Durable sessions, per project.** JSONL transcripts on disk, resume across a
|
|
229
238
|
process restart, and context compaction that keeps the full archive.
|
|
230
239
|
`/resume`, `/sessions`, `/status`, `/flows`, `/compact`, `/new`, and
|