prism-mcp-server 20.12.1 → 20.13.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 +56 -21
- package/dist/tools/compactionHandler.js +5 -2
- package/dist/tools/ingestHandler.js +45 -35
- package/dist/tools/prismInferHandler.js +811 -33
- package/dist/tools/taskRouterHandler.js +5 -2
- package/dist/utils/entitlements.js +10 -2
- package/dist/utils/imageDownscale.js +303 -0
- package/dist/utils/inferenceMetrics.js +56 -1
- package/dist/utils/layer1.js +319 -9
- package/dist/utils/modelPicker.js +64 -10
- package/dist/utils/nerExtractor.js +6 -2
- package/dist/utils/routeContract.js +54 -2
- package/package.json +2 -2
- package/scripts/dev/browse.py +68 -0
package/README.md
CHANGED
|
@@ -694,14 +694,20 @@ for manual configuration and host-specific paths.
|
|
|
694
694
|
**Optional — local model fleet** for offline tool-routing. Pull whichever fits your hardware:
|
|
695
695
|
|
|
696
696
|
```bash
|
|
697
|
-
ollama pull dcostenco/prism-coder:2b #
|
|
698
|
-
ollama pull dcostenco/prism-coder:4b # 3.
|
|
699
|
-
ollama pull dcostenco/prism-coder:9b #
|
|
700
|
-
ollama pull dcostenco/prism-coder:27b # 16 GB
|
|
697
|
+
ollama pull dcostenco/prism-coder:2b # 3.3 GB · on-device / lowest RAM · sees images (100% on our routing suite)
|
|
698
|
+
ollama pull dcostenco/prism-coder:4b # 3.5 GB · verifier · sees images (100%)
|
|
699
|
+
ollama pull dcostenco/prism-coder:9b # 6.7 GB · default router · sees images (95.7%, reasons before answering)
|
|
700
|
+
ollama pull dcostenco/prism-coder:27b # 16.8 GB · complex code / quality · text only (100%)
|
|
701
701
|
```
|
|
702
702
|
|
|
703
703
|
Prism detects both the namespaced (`dcostenco/prism-coder:9b`) and bare (`prism-coder:9b`) Ollama tags automatically.
|
|
704
704
|
|
|
705
|
+
The 2b/4b/9b tiers carry a vision tower and accept screenshots through
|
|
706
|
+
`prism_infer({ images: [...] })` — pass absolute paths or base64. Image
|
|
707
|
+
requests are refused rather than answered blind when no tier (or the Layer 1
|
|
708
|
+
safety classifier) can actually see the image, so a text-only model is never
|
|
709
|
+
handed a prompt about a screenshot it never received. The 27b is text only.
|
|
710
|
+
|
|
705
711
|
---
|
|
706
712
|
|
|
707
713
|
## What it does
|
|
@@ -844,9 +850,9 @@ air-gap. **Enterprise** includes a HIPAA Business Associate Agreement.
|
|
|
844
850
|
|
|
845
851
|
## Models
|
|
846
852
|
|
|
847
|
-
The `prism-coder` fleet uses Qwen3.5 for MCP tool-routing AND general inference. The 9B and 27B are fine-tuned
|
|
853
|
+
The `prism-coder` fleet uses Qwen3.5 for MCP tool-routing AND general inference. The 9B and 27B are fine-tuned; the 2B and 4B use stock Qwen3.5-4B at different quantization levels. The 27B scored 100% on our internal 115-case tool-routing suite and 100% on an internal 15-problem coding eval, at $0 inference cost. These are self-run evaluations, not [BFCL](https://gorilla.cs.berkeley.edu/leaderboard.html) leaderboard submissions.
|
|
848
854
|
|
|
849
|
-
`prism_infer` supports three modes: `route` (tool routing, fast
|
|
855
|
+
`prism_infer` supports three modes: `route` (tool routing, fast), `chat` (conversation) and `code` (code generation). Reasoning is decided by the **tier**, not the mode: a tier carrying `MODEL_TIERS.prefersThinking` also carries a `minLocalTokens` floor so reasoning cannot crowd out the answer, and only those tiers use `<think>` blocks (stripped before the response is served). The 9B does; the 4B and 2B do not, because on those tiers reasoning drew down the same `num_predict` budget the answer needed and returned an empty response. An explicit `think: true` still overrides, for a caller who has sized `max_tokens` for it. If the local model fails a quality gate (empty, think-only, or truncated), paid tiers automatically escalate to Gemini 3.6 Flash via the Synalux portal.
|
|
850
856
|
|
|
851
857
|
Every route-mode result is parsed locally and checked against `allowed_tools`
|
|
852
858
|
before it reaches the host. Malformed or unadvertised calls become `NO_TOOL`.
|
|
@@ -856,16 +862,33 @@ draft that may need correction—to Synalux for authenticated deterministic
|
|
|
856
862
|
correction. Advertised custom host tools remain local. Set
|
|
857
863
|
`route_guard: "local"` for a fully on-device route path.
|
|
858
864
|
|
|
859
|
-
| Model | Ollama tag | Size | Routing accuracy¹ | Role | Automatic routing tier |
|
|
860
|
-
|
|
861
|
-
| Qwen3.5-4B
|
|
862
|
-
| Qwen3.5-4B Q4_K_M | `prism-coder:4b` | 3.
|
|
863
|
-
| Qwen3.5-9B (LoRA) | `prism-coder:9b` |
|
|
864
|
-
| Qwen3.5-27B (LoRA) | `prism-coder:27b` | 16 GB | 100%
|
|
865
|
-
|
|
866
|
-
¹ Self-run on a narrow 115-case MCP tool-selection suite,
|
|
867
|
-
|
|
868
|
-
|
|
865
|
+
| Model | Ollama tag | Size | Vision | Routing accuracy¹ | Role | Automatic routing tier |
|
|
866
|
+
|---|---|---|---|---|---|---|
|
|
867
|
+
| Qwen3.5-4B Q4_K_S | `prism-coder:2b` | 3.3 GB | ✅ | 100% | On-device / lowest RAM (4.5 GiB free) | Free |
|
|
868
|
+
| Qwen3.5-4B Q4_K_M | `prism-coder:4b` | 3.5 GB | ✅ | 100% | Verifier (5.2 GiB free) | Free |
|
|
869
|
+
| Qwen3.5-9B (LoRA) | `prism-coder:9b` | 6.7 GB | ✅ | 95.7%² | Default router / workhorse (9 GiB free) | Standard+ |
|
|
870
|
+
| Qwen3.5-27B (LoRA) | `prism-coder:27b` | 16.8 GB | — | 100% | Complex code / quality (21 GiB free) | Advanced+ |
|
|
871
|
+
|
|
872
|
+
¹ Self-run on a narrow 115-case MCP tool-selection suite, `temperature: 0`,
|
|
873
|
+
measured through the call path `prism_infer` actually uses (`/api/chat`, each
|
|
874
|
+
model's own template). It says these models pick the right tool on our own eval,
|
|
875
|
+
nothing more — not a general capability measure, and not an independent
|
|
876
|
+
benchmark result. Earlier revisions of this table quoted 99.1–100% from a
|
|
877
|
+
harness that hand-rolled a ChatML prompt with `raw: true`, bypassing the
|
|
878
|
+
template; those numbers described a path no caller exercises. Full methodology
|
|
879
|
+
caveats below.
|
|
880
|
+
|
|
881
|
+
² The 9B is the one tier that reasons before answering, and it is measured with
|
|
882
|
+
reasoning enabled: 95.7% with thinking, 83.5% without. `prism_infer` sets this
|
|
883
|
+
per-tier (`MODEL_TIERS.prefersThinking`), so callers get the 95.7% path by
|
|
884
|
+
default. Reasoning costs roughly 600 tokens, which is why the 9B also carries a
|
|
885
|
+
2,048-token local floor.
|
|
886
|
+
|
|
887
|
+
**Vision.** The 2B/4B/9B tags ship a separate `projector` layer (0.68–0.92 GB)
|
|
888
|
+
and read images; the 27B is text-only. `prism_infer` probes for that layer and
|
|
889
|
+
skips a tier with no vision rather than sending it an image — asked directly, a
|
|
890
|
+
text-only model will still answer confidently about pixels it never received.
|
|
891
|
+
Exercised against the real models in `tests/integration/visionScreenshot.test.ts`.
|
|
869
892
|
|
|
870
893
|
These tiers control automatic `prism_infer` selection, not Ollama itself. Any
|
|
871
894
|
user can run any downloaded on-device model directly through Ollama on every
|
|
@@ -920,10 +943,17 @@ reliability, not general model capability.
|
|
|
920
943
|
|
|
921
944
|
| Model | Routing accuracy | Notes |
|
|
922
945
|
|---|---|---|
|
|
923
|
-
| prism-coder:2b (
|
|
924
|
-
| prism-coder:4b
|
|
946
|
+
| prism-coder:2b (Q4_K_S) | 100% | The 2B was requantised when vision shipped; the old 99.1% was Q3_K_M |
|
|
947
|
+
| prism-coder:4b | 100% | |
|
|
948
|
+
| prism-coder:9b | 95.7% with reasoning | 83.5% without — the only tier where this differs |
|
|
949
|
+
| prism-coder:27b | 100% | |
|
|
925
950
|
| Claude (frontier, same eval) | ~98% | Stronger everywhere outside this narrow task |
|
|
926
951
|
|
|
952
|
+
Measured through `/api/chat` with each model's own template — the path
|
|
953
|
+
`prism_infer` uses. `temperature: 0`, so the three seeds only reshuffle case
|
|
954
|
+
order and cannot disagree; earlier revisions cited that agreement as
|
|
955
|
+
confirmation, which it never was.
|
|
956
|
+
|
|
927
957
|
**Memory uplift (LoCoMo-Plus, self-published).** A separate long-context dialogue benchmark ([dcostenco/Locomo-Plus](https://github.com/dcostenco/Locomo-Plus)) measures how much structured memory helps a base model retain multi-day context. Results show large gains when a model is paired with Prism memory versus running raw. Note this benchmark is authored, run, and LLM-judged by this project — treat it as a reproducible demonstration, not an independent third-party result, and run it yourself with the commands in that repo.
|
|
928
958
|
|
|
929
959
|
**Code generation evaluation.** In a small July 2026 deterministic execution
|
|
@@ -1053,9 +1083,14 @@ prism_infer({
|
|
|
1053
1083
|
|
|
1054
1084
|
| Mode | Think | Model | Use case |
|
|
1055
1085
|
|------|-------|-------|----------|
|
|
1056
|
-
| `route` | Off (fast) | 9B default | MCP tool routing |
|
|
1057
|
-
| `chat` |
|
|
1058
|
-
| `code` |
|
|
1086
|
+
| `route` | Off (fast) — except a tier that reasons better, e.g. 9B | 9B default | MCP tool routing |
|
|
1087
|
+
| `chat` | Per tier: on for 9B, off for 4B/2B | 27B preferred | Conversation, reasoning |
|
|
1088
|
+
| `code` | Per tier: on for 9B, off for 4B/2B | 27B preferred | Code generation, debugging |
|
|
1089
|
+
|
|
1090
|
+
Think is a **tier** property, not a mode property. Tiers with
|
|
1091
|
+
`prefersThinking` also declare a `minLocalTokens` floor that reserves budget for
|
|
1092
|
+
the answer; tiers without it spend the whole `num_predict` allowance inside
|
|
1093
|
+
`<think>` and return nothing. Pass `think` explicitly to override either way.
|
|
1059
1094
|
|
|
1060
1095
|
Full TypeScript signatures live in [`src/tools/`](src/tools/); architecture in [`docs/ARCHITECTURE.md`](docs/ARCHITECTURE.md).
|
|
1061
1096
|
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
import { getStorage } from "../storage/index.js";
|
|
10
10
|
import { PRISM_USER_ID } from "../config.js";
|
|
11
11
|
import { getLLMProvider } from "../utils/llm/factory.js";
|
|
12
|
-
import {
|
|
12
|
+
import { inferText } from "./prismInferHandler.js";
|
|
13
13
|
import { PRISM_LOCAL_LLM_ENABLED, PRISM_STRICT_LOCAL_MODE } from "../config.js";
|
|
14
14
|
import { debugLog } from "../utils/logger.js";
|
|
15
15
|
// ─── Constants ────────────────────────────────────────────────
|
|
@@ -111,7 +111,10 @@ async function summarizeEntries(entries) {
|
|
|
111
111
|
// ── Path 1: Local LLM (prism-coder:9b) ───────────────────────────
|
|
112
112
|
if (PRISM_LOCAL_LLM_ENABLED) {
|
|
113
113
|
debugLog(`[compact_ledger] Attempting local LLM summarization (${entries.length} entries)`);
|
|
114
|
-
|
|
114
|
+
// Ledger content goes through the full ladder so Layer 1 screening, the
|
|
115
|
+
// quality gate and the entitlement ceiling all apply — this summarises
|
|
116
|
+
// session records that may carry sensitive material.
|
|
117
|
+
const localResponse = await inferText(prompt, { mode: "chat" });
|
|
115
118
|
if (localResponse) {
|
|
116
119
|
debugLog(`[compact_ledger] Local LLM summarization succeeded`);
|
|
117
120
|
return parseCompactionResponse(localResponse, "local-llm");
|
|
@@ -54,50 +54,60 @@ function chunkSource(content, chunkSize, source) {
|
|
|
54
54
|
totalChars: content.length,
|
|
55
55
|
};
|
|
56
56
|
}
|
|
57
|
-
// ─── Q&A Generator (
|
|
57
|
+
// ─── Q&A Generator (via prism_infer) ────────────────────────────
|
|
58
|
+
/**
|
|
59
|
+
* Generate training Q&A pairs for a chunk.
|
|
60
|
+
*
|
|
61
|
+
* This used to POST straight to api.anthropic.com with a key read from
|
|
62
|
+
* ANTHROPIC_API_KEY **or ~/.anthropic_key**. That is an ambient-credential
|
|
63
|
+
* path: any process with the variable set bills the owner, which is how a
|
|
64
|
+
* local test run once burned ~$500 against a key exported in a shell profile.
|
|
65
|
+
* It also sat outside every gate prism applies to model calls.
|
|
66
|
+
*
|
|
67
|
+
* Ingest is training-data generation rather than user-facing inference, which
|
|
68
|
+
* is why it was left alone at first — but "not inference" does not make a raw
|
|
69
|
+
* billing surface a good idea, and prism_infer already offers the same
|
|
70
|
+
* capability local-first with an entitlement-gated cloud fallback. So it goes
|
|
71
|
+
* through the ladder like everything else, and prism no longer reads a
|
|
72
|
+
* provider key from the environment at all.
|
|
73
|
+
*
|
|
74
|
+
* PHI redaction still runs BEFORE the model sees anything: a chunk may carry
|
|
75
|
+
* client names in file paths, inline identifiers, or clinical notes, and the
|
|
76
|
+
* local tier is not a licence to skip that.
|
|
77
|
+
*/
|
|
58
78
|
async function generateQAPairs(chunk, source) {
|
|
59
|
-
const
|
|
60
|
-
(existsSync(`${process.env.HOME}/.anthropic_key`)
|
|
61
|
-
? readFileSync(`${process.env.HOME}/.anthropic_key`, "utf-8").trim()
|
|
62
|
-
: null);
|
|
63
|
-
if (!apiKey) {
|
|
64
|
-
debugLog("[ingest] No ANTHROPIC_API_KEY — skipping Q&A generation, storing raw chunks");
|
|
65
|
-
return [{ prompt: `What does this ${source} code do?`, response: chunk.slice(0, 500) }];
|
|
66
|
-
}
|
|
67
|
-
// PHI redaction BEFORE sending to cloud LLM — the chunk may contain
|
|
68
|
-
// client names in file paths, inline identifiers, or clinical notes.
|
|
79
|
+
const fallback = [{ prompt: `What does this ${source} code do?`, response: chunk.slice(0, 500) }];
|
|
69
80
|
const { scanAndRedactPHI } = await import("../utils/phiGuard.js");
|
|
70
81
|
const redactedChunk = scanAndRedactPHI(chunk).redacted;
|
|
82
|
+
const { inferText } = await import("./prismInferHandler.js");
|
|
83
|
+
const text = await inferText(`Source: ${source}\n\`\`\`\n${redactedChunk.slice(0, 5000)}\n\`\`\``, {
|
|
84
|
+
system: 'Generate 3 Q&A training pairs as JSON array: [{"prompt":"...","response":"..."}]. Focus on what the code does, how it works, and key patterns.',
|
|
85
|
+
mode: "chat",
|
|
86
|
+
maxTokens: 2048,
|
|
87
|
+
});
|
|
88
|
+
if (!text) {
|
|
89
|
+
debugLog("[ingest] no model output — storing raw chunk");
|
|
90
|
+
return fallback;
|
|
91
|
+
}
|
|
71
92
|
try {
|
|
72
|
-
const res = await fetch("https://api.anthropic.com/v1/messages", {
|
|
73
|
-
method: "POST",
|
|
74
|
-
headers: {
|
|
75
|
-
"Content-Type": "application/json",
|
|
76
|
-
"x-api-key": apiKey,
|
|
77
|
-
"anthropic-version": "2023-06-01",
|
|
78
|
-
},
|
|
79
|
-
body: JSON.stringify({
|
|
80
|
-
model: "claude-haiku-4-5-20251001",
|
|
81
|
-
max_tokens: 2048,
|
|
82
|
-
system: 'Generate 3 Q&A training pairs as JSON array: [{"prompt":"...","response":"..."}]. Focus on what the code does, how it works, and key patterns.',
|
|
83
|
-
messages: [{ role: "user", content: `Source: ${source}\n\`\`\`\n${redactedChunk.slice(0, 5000)}\n\`\`\`` }],
|
|
84
|
-
}),
|
|
85
|
-
});
|
|
86
|
-
if (!res.ok) {
|
|
87
|
-
debugLog(`[ingest] Claude API error: ${res.status}`);
|
|
88
|
-
return [];
|
|
89
|
-
}
|
|
90
|
-
const data = await res.json();
|
|
91
|
-
const text = data.content?.[0]?.text || "";
|
|
92
93
|
const match = text.match(/\[.*\]/s);
|
|
93
|
-
if (match) {
|
|
94
|
-
|
|
94
|
+
if (!match) {
|
|
95
|
+
debugLog("[ingest] model output had no JSON array — storing raw chunk");
|
|
96
|
+
return fallback;
|
|
95
97
|
}
|
|
98
|
+
const parsed = JSON.parse(match[0]);
|
|
99
|
+
if (!Array.isArray(parsed))
|
|
100
|
+
return fallback;
|
|
101
|
+
// Only keep well-formed pairs; a malformed element must not reach storage
|
|
102
|
+
// as an undefined prompt/response.
|
|
103
|
+
const pairs = parsed.filter((p) => !!p && typeof p.prompt === "string"
|
|
104
|
+
&& typeof p.response === "string");
|
|
105
|
+
return pairs.length > 0 ? pairs : fallback;
|
|
96
106
|
}
|
|
97
107
|
catch (err) {
|
|
98
|
-
debugLog(`[ingest] Q&A
|
|
108
|
+
debugLog(`[ingest] Q&A parse error: ${err}`);
|
|
109
|
+
return fallback;
|
|
99
110
|
}
|
|
100
|
-
return [];
|
|
101
111
|
}
|
|
102
112
|
// ─── Main Ingest Pipeline ───────────────────────────────────────
|
|
103
113
|
export async function ingestKnowledge(args) {
|