knowy 1.0.0 → 1.0.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 +6 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -106,3 +106,9 @@ Results include a `score` from 0 to 1, where 1 is a perfect match. The score is
106
106
  ## License
107
107
 
108
108
  MIT © littlejustnode
109
+
110
+ ## Acknowledgements
111
+ This project uses the following open-source components:
112
+ - [Transformers.js](https://github.com/huggingface/transformers.js) (Apache 2.0)
113
+ - [Qwen3-Embedding-0.6B](https://huggingface.co/Qwen/Qwen3-Embedding-0.6B) by Alibaba Qwen Team (Apache 2.0)
114
+ - [LanceDB](https://github.com/lancedb/lancedb) (Apache 2.0)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "knowy",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A local-first knowledge base engine with vector search using LanceDB and Hugging Face embeddings",
5
5
  "main": "knowy.js",
6
6
  "type": "module",
@@ -16,7 +16,7 @@
16
16
  "semantic-search",
17
17
  "qa",
18
18
  "ai",
19
- "knowy",
19
+ "knowy",
20
20
  "local-first"
21
21
  ],
22
22
  "author": "littlejustnode",
@@ -36,4 +36,4 @@
36
36
  "engines": {
37
37
  "node": ">=18.0.0"
38
38
  }
39
- }
39
+ }