@equationalapplications/react-llm-wiki 4.8.0 → 4.10.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 +17 -1
- package/package.json +31 -3
package/README.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# @equationalapplications/react-llm-wiki
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
In-browser LLM memory for React web apps. Bring your own SQLite adapter (e.g., [`sql.js`](https://github.com/sql-js/sql.js) WebAssembly) for a complete, zero-server RAG experience.
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/@equationalapplications/react-llm-wiki) [](https://www.npmjs.com/package/@equationalapplications/react-llm-wiki)
|
|
6
|
+
[](https://www.typescriptlang.org/)
|
|
7
|
+
[](https://github.com/equationalapplications/expo-llm-wiki/blob/main/packages/react/LICENSE)
|
|
8
|
+
|
|
9
|
+
**[GitHub](https://github.com/equationalapplications/expo-llm-wiki)** · **[Playground](https://equationalapplications.github.io/expo-llm-wiki/playground/)** · **[Changelog](https://github.com/equationalapplications/expo-llm-wiki/blob/main/CHANGELOG.md)** · **[Issues](https://github.com/equationalapplications/expo-llm-wiki/issues)**
|
|
4
10
|
|
|
5
11
|
> Inspired by [Andrej Karpathy's LLM Wiki memory spec](https://gist.github.com/karpathy/442a6bf555914893e9891c11519de94f).
|
|
6
12
|
|
|
@@ -430,6 +436,16 @@ The flowchart shows:
|
|
|
430
436
|
5. **Hybrid scoring** to blend semantic and keyword rankings
|
|
431
437
|
6. **Vector caching** on full scans only; reads with `preFilterLimit` active skip cache population
|
|
432
438
|
|
|
439
|
+
## Monorepo Ecosystem
|
|
440
|
+
|
|
441
|
+
| Package | Description |
|
|
442
|
+
|---------|-------------|
|
|
443
|
+
| [`@equationalapplications/core-llm-wiki`](https://www.npmjs.com/package/@equationalapplications/core-llm-wiki) | Pure TypeScript core — DB-agnostic, bring your own SQLite adapter |
|
|
444
|
+
| [`@equationalapplications/expo-llm-wiki`](https://www.npmjs.com/package/@equationalapplications/expo-llm-wiki) | Expo / React Native adapter with `expo-sqlite` |
|
|
445
|
+
| **`@equationalapplications/react-llm-wiki`** | React hooks + web adapter with `sql.js` |
|
|
446
|
+
| [`@equationalapplications/prisma-outbox`](https://www.npmjs.com/package/@equationalapplications/prisma-outbox) | Sync SQLite outbox events to Prisma in a transaction |
|
|
447
|
+
| [`@equationalapplications/core-llm-tools`](https://www.npmjs.com/package/@equationalapplications/core-llm-tools) | Platform-agnostic Gemini tool schemas + capability scope injector |
|
|
448
|
+
|
|
433
449
|
## License
|
|
434
450
|
|
|
435
451
|
MIT
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equationalapplications/react-llm-wiki",
|
|
3
|
-
"version": "4.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "4.10.1",
|
|
4
|
+
"description": "In-browser LLM memory for React web apps. Bring your own SQLite adapter (e.g., sql.js WebAssembly) for a complete, zero-server RAG experience.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -23,12 +23,40 @@
|
|
|
23
23
|
"README.md"
|
|
24
24
|
],
|
|
25
25
|
"license": "MIT",
|
|
26
|
+
"keywords": [
|
|
27
|
+
"llm-memory",
|
|
28
|
+
"ai-memory",
|
|
29
|
+
"rag",
|
|
30
|
+
"sqlite",
|
|
31
|
+
"vector-search",
|
|
32
|
+
"episodic-memory",
|
|
33
|
+
"semantic-memory",
|
|
34
|
+
"multi-agent",
|
|
35
|
+
"typescript",
|
|
36
|
+
"gemini",
|
|
37
|
+
"openai",
|
|
38
|
+
"react",
|
|
39
|
+
"react-hooks",
|
|
40
|
+
"web-ai",
|
|
41
|
+
"sql.js",
|
|
42
|
+
"wasm",
|
|
43
|
+
"in-browser"
|
|
44
|
+
],
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "https://github.com/equationalapplications/expo-llm-wiki.git",
|
|
48
|
+
"directory": "packages/react"
|
|
49
|
+
},
|
|
50
|
+
"bugs": {
|
|
51
|
+
"url": "https://github.com/equationalapplications/expo-llm-wiki/issues"
|
|
52
|
+
},
|
|
53
|
+
"homepage": "https://github.com/equationalapplications/expo-llm-wiki/tree/main/packages/react#readme",
|
|
26
54
|
"publishConfig": {
|
|
27
55
|
"access": "public",
|
|
28
56
|
"registry": "https://registry.npmjs.org"
|
|
29
57
|
},
|
|
30
58
|
"dependencies": {
|
|
31
|
-
"@equationalapplications/core-llm-wiki": "4.
|
|
59
|
+
"@equationalapplications/core-llm-wiki": "4.10.1"
|
|
32
60
|
},
|
|
33
61
|
"engines": {
|
|
34
62
|
"node": ">=20"
|