pi-research 1.5.0 β 1.5.1
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 +5 -27
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
> **`pi-research` is deprecated and will no longer receive updates.**
|
|
4
4
|
|
|
5
|
-
## π Please migrate to [
|
|
5
|
+
## π Please migrate to [`@black-knight.dev/emet`](https://www.npmjs.com/package/@black-knight.dev/emet)
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
# Uninstall old package
|
|
9
9
|
npm uninstall -g pi-research
|
|
10
10
|
|
|
11
11
|
# Install new package
|
|
12
|
-
npm install -g emet
|
|
12
|
+
npm install -g @black-knight.dev/emet
|
|
13
13
|
|
|
14
14
|
# Pi Extension
|
|
15
|
-
pi install npm
|
|
15
|
+
pi install npm:@black-knight.dev/emet
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
---
|
|
@@ -21,30 +21,9 @@ pi install npm:emet
|
|
|
21
21
|
|
|
22
22
|
`pi-research` has been rebranded to **`emet`** (Hebrew for truth/fact) β a cleaner, standalone identity that better reflects what the tool does: it grounds AI agents in factual, real-time context.
|
|
23
23
|
|
|
24
|
-
<<<<<<< HEAD
|
|
25
|
-
- **Model2Vec & SVC:** Queries are classified via locally embedded features. Security and paper queries have a 0% downgrade rate.
|
|
26
|
-
- **Structured ML:** Instead of asking a heavy LLM "Is this enough data?", the system extracts deterministic features (`has_authority`, `conflict_state`) and uses an ultra-fast Logistic Regression model to evaluate sufficiency and follow-up actions wich achieved 100% accuracy on the included βeval_unseen_hard.jsβ benchmark dataset (121 test cases)β
|
|
27
|
-
- **Node.js-to-Python IPC:** Operates entirely locally using a highly optimized, line-delimited JSON-RPC daemon to manage Python dependencies (`Scrapling`, `Model2Vec`) without memory leaks.
|
|
28
|
-
|
|
29
|
-
---
|
|
30
|
-
|
|
31
|
-
## π£οΈ Future Roadmap
|
|
32
|
-
|
|
33
|
-
We are actively working on scaling the reasoning capabilities:
|
|
34
|
-
- **LLM Data Augmentation (Weak Supervision):** Generating synthetic training data for underconfident domains to boost zero-shot accuracy targeting >95%β without manual labeling.
|
|
35
|
-
- **Active Learning Telemetry Loop:** Clustering low-confidence predictions from cache logs into a weakly-supervised retraining pipeline to let the system "self-heal."
|
|
36
|
-
- **Cross-Encoder for Conflict Detection:** Transitioning to a fine-tuned Cross-Encoder (e.g., MiniLM + Natural Language Inference) to detect deep semantic contradiction across differing texts (e.g., recognizing that "Node 20 is stable" contradicts "Node 20 is broken").
|
|
37
|
-
|
|
38
|
-
---
|
|
39
|
-
|
|
40
|
-
## π License & Notices
|
|
41
|
-
- **License:** MIT
|
|
42
|
-
- **Third-party notices:** See `THIRD_PARTY_NOTICES.md`
|
|
43
|
-
- **GitHub:** [https://github.com/endgegnerbert-tech/pi-research](https://github.com/endgegnerbert-tech/pi-research)
|
|
44
|
-
=======
|
|
45
24
|
| Old | New |
|
|
46
25
|
|---|---|
|
|
47
|
-
| `pi-research` |
|
|
26
|
+
| `pi-research` | `@black-knight.dev/emet` |
|
|
48
27
|
| `unblind-mcp` (MCP server) | `emet-mcp` |
|
|
49
28
|
| `PI_RESEARCH_*` env vars | `EMET_*` env vars |
|
|
50
29
|
| `pi-research` tool name | `emet` tool name |
|
|
@@ -54,5 +33,4 @@ architecture carry over 100%. No functionality was removed.
|
|
|
54
33
|
|
|
55
34
|
---
|
|
56
35
|
|
|
57
|
-
**GitHub:** [
|
|
58
|
-
>>>>>>> 72ee46a (chore: deprecate package, move to emet)
|
|
36
|
+
**GitHub:** [endgegnerbert-tech/emet](https://github.com/endgegnerbert-tech/emet)
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-research",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
|
-
"description": "β οΈ DEPRECATED: This package has moved to 'emet'. Run: npm install -g emet",
|
|
6
|
+
"description": "β οΈ DEPRECATED: This package has moved to '@black-knight.dev/emet'. Run: npm install -g @black-knight.dev/emet",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "./index.js",
|
|
9
9
|
"bin": {
|