dcostenco commited on
Commit
ca3dbf1
·
verified ·
1 Parent(s): e5db897

docs: add Synalux CTA + Prism Routing Benchmark instructions

Browse files
Files changed (1) hide show
  1. README.md +35 -0
README.md CHANGED
@@ -89,6 +89,41 @@ Use the [v27 system prompt](https://github.com/dcostenco/prism-coder/blob/main/t
89
  - **Linux**: RTX 3090/4090 (24GB)
90
  - **VRAM**: ~10 GB loaded
91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  ## License
93
 
94
  Apache-2.0.
 
89
  - **Linux**: RTX 3090/4090 (24GB)
90
  - **VRAM**: ~10 GB loaded
91
 
92
+
93
+
94
+ ---
95
+
96
+ ## Get the full stack
97
+
98
+ The model routes tool calls — but needs a backend to route TO:
99
+
100
+ ```bash
101
+ # Install the memory server (free, local, no API keys)
102
+ npm install -g prism-mcp-server
103
+
104
+ # Pull the model
105
+ ollama pull dcostenco/prism-coder:14b
106
+
107
+ # Done — your AI agent now has persistent memory + 98% tool routing
108
+ ```
109
+
110
+ **Free tier:** local SQLite, no cloud, no account needed.
111
+ **Synalux portal:** cloud sync, HIPAA dashboard, team access, Claude fallback → [synalux.ai](https://synalux.ai)
112
+
113
+ ---
114
+
115
+ ## Prism Routing Benchmark
116
+
117
+ 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:
118
+
119
+ ```bash
120
+ git clone https://github.com/dcostenco/prism-coder
121
+ cd prism-coder
122
+ python3 tests/benchmarks/prism-routing-100/benchmark.py --models 14b --seed 2027
123
+ ```
124
+
125
+ 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.
126
+
127
  ## License
128
 
129
  Apache-2.0.