dcostenco commited on
Commit
be2ee28
·
verified ·
1 Parent(s): b34a812

docs: add Synalux CTA + Prism Routing Benchmark instructions

Browse files
Files changed (1) hide show
  1. README.md +35 -0
README.md CHANGED
@@ -44,6 +44,41 @@ ollama pull dcostenco/prism-coder:32b
44
  - **Linux**: A100 40GB+
45
  - **VRAM**: ~22 GB
46
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
  ## License
48
 
49
  Apache-2.0.
 
44
  - **Linux**: A100 40GB+
45
  - **VRAM**: ~22 GB
46
 
47
+
48
+
49
+ ---
50
+
51
+ ## Get the full stack
52
+
53
+ The model routes tool calls — but needs a backend to route TO:
54
+
55
+ ```bash
56
+ # Install the memory server (free, local, no API keys)
57
+ npm install -g prism-mcp-server
58
+
59
+ # Pull the model
60
+ ollama pull dcostenco/prism-coder:32b
61
+
62
+ # Done — your AI agent now has persistent memory + 98% tool routing
63
+ ```
64
+
65
+ **Free tier:** local SQLite, no cloud, no account needed.
66
+ **Synalux portal:** cloud sync, HIPAA dashboard, team access, Claude fallback → [synalux.ai](https://synalux.ai)
67
+
68
+ ---
69
+
70
+ ## Prism Routing Benchmark
71
+
72
+ This model is evaluated on the [Prism Routing Benchmark](https://github.com/dcostenco/prism-coder/tree/main/tests/benchmarks/prism-routing-100) — a 100-case, 13-category eval for MCP tool routing. Run it yourself:
73
+
74
+ ```bash
75
+ git clone https://github.com/dcostenco/prism-coder
76
+ cd prism-coder
77
+ python3 tests/benchmarks/prism-routing-100/benchmark.py --models 32b --seed 2027
78
+ ```
79
+
80
+ Not a general function-calling benchmark (BFCL). This measures routing precision on 7 specific MCP tools — the task these models were built for. The value is **offline reliability at zero cost**, not competing with frontier models on arbitrary APIs.
81
+
82
  ## License
83
 
84
  Apache-2.0.