lightrag 1.1.0 → 1.1.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -66,7 +66,7 @@ await _rag.insert(documentText);
66
66
  const _context = await _rag.buildContext(question, 'hybrid');
67
67
  ```
68
68
 
69
- See the [BlackboardLM](https://github.com/winterist/BlackboardLM) project for a complete browser integration example using Web Workers, IndexedDB persistence, and streaming LLM responses.
69
+ See the [BlackboardLM](https://github.com/Mirakelor/BlackboardLM) project for a complete browser integration example using Web Workers, IndexedDB persistence, and streaming LLM responses.
70
70
 
71
71
  ## API
72
72
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lightrag",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Lightweight RAG library with knowledge graph — runs in Node.js and browsers (Web Worker, no bundler), MIT licensed",
5
5
  "main": "src/index.js",
6
6
  "browser": "src/index.js",
@@ -27,9 +27,10 @@
27
27
  ],
28
28
  "author": "BlackboardLM",
29
29
  "license": "MIT",
30
+ "homepage": "https://github.com/Mirakelor/BlackboardLM/tree/main/lightrag#readme",
30
31
  "repository": {
31
32
  "type": "git",
32
- "url": "https://github.com/winterist/BlackboardLM"
33
+ "url": "https://github.com/Mirakelor/BlackboardLM"
33
34
  },
34
35
  "type": "commonjs",
35
36
  "peerDependencies": {