dcostenco commited on
Commit
a82167d
·
verified ·
1 Parent(s): f5ef1d0

docs: add Synalux CTA + Prism Routing Benchmark instructions

Browse files
Files changed (1) hide show
  1. README.md +35 -0
README.md CHANGED
@@ -51,6 +51,41 @@ ollama pull dcostenco/prism-coder:1b7
51
  - **iPhone**: A14+ (iPhone 12+), ~1.6 GB RAM
52
  - **Mac**: any M-series
53
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  ## License
55
 
56
  Apache-2.0.
 
51
  - **iPhone**: A14+ (iPhone 12+), ~1.6 GB RAM
52
  - **Mac**: any M-series
53
 
54
+
55
+
56
+ ---
57
+
58
+ ## Get the full stack
59
+
60
+ The model routes tool calls — but needs a backend to route TO:
61
+
62
+ ```bash
63
+ # Install the memory server (free, local, no API keys)
64
+ npm install -g prism-mcp-server
65
+
66
+ # Pull the model
67
+ ollama pull dcostenco/prism-coder:1b7
68
+
69
+ # Done — your AI agent now has persistent memory + 98% tool routing
70
+ ```
71
+
72
+ **Free tier:** local SQLite, no cloud, no account needed.
73
+ **Synalux portal:** cloud sync, HIPAA dashboard, team access, Claude fallback → [synalux.ai](https://synalux.ai)
74
+
75
+ ---
76
+
77
+ ## Prism Routing Benchmark
78
+
79
+ 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:
80
+
81
+ ```bash
82
+ git clone https://github.com/dcostenco/prism-coder
83
+ cd prism-coder
84
+ python3 tests/benchmarks/prism-routing-100/benchmark.py --models 1b7 --seed 2027
85
+ ```
86
+
87
+ 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.
88
+
89
  ## License
90
 
91
  Apache-2.0.