@sap-ux/fiori-docs-embeddings 0.4.1 → 0.4.3

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 CHANGED
@@ -1,4 +1,6 @@
1
- # @sap-ux/fiori-docs-embeddings
1
+ [![Changelog](https://img.shields.io/badge/changelog-8A2BE2)](https://github.com/SAP/open-ux-tools/blob/main/packages/fiori-docs-embeddings/CHANGELOG.md) [![Github repo](https://img.shields.io/badge/github-repo-blue)](https://github.com/SAP/open-ux-tools/tree/main/packages/fiori-docs-embeddings)
2
+
3
+ # [`@sap-ux/fiori-docs-embeddings`](https://github.com/SAP/open-ux-tools/tree/main/packages/fiori-docs-embeddings)
2
4
 
3
5
  A Node.js package that indexes SAP Fiori related documentation from multiple sources and generates vector embeddings for semantic search capabilities.
4
6
 
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "version": "1.0.0",
3
- "createdAt": "2025-10-22T19:24:10.609Z",
3
+ "createdAt": "2025-11-12T08:33:18.400Z",
4
4
  "model": "Xenova/all-MiniLM-L6-v2",
5
5
  "dimensions": 384,
6
- "totalVectors": 670,
7
- "totalDocuments": 670,
6
+ "totalVectors": 692,
7
+ "totalDocuments": 692,
8
8
  "chunkSize": 2000,
9
9
  "chunkOverlap": 100
10
10
  }
@@ -4,5 +4,5 @@
4
4
  ],
5
5
  "totalTables": 1,
6
6
  "maxVectorsPerTable": 5000,
7
- "totalVectors": 670
7
+ "totalVectors": 692
8
8
  }
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@sap-ux/fiori-docs-embeddings",
3
- "version": "0.4.1",
3
+ "version": "0.4.3",
4
4
  "description": "SAP Fiori documentation indexing",
5
5
  "private": false,
6
6
  "dependencies": {},
7
7
  "devDependencies": {
8
+ "@npm/types": "2.1.0",
8
9
  "@types/node": "20.0.0",
9
10
  "@lancedb/lancedb": "0.22.0",
10
11
  "@xenova/transformers": "2.17.2",
@@ -14,7 +15,8 @@
14
15
  "gray-matter": "^4.0.3",
15
16
  "fast-xml-parser": "^4.3.4",
16
17
  "tsx": "^4.7.0",
17
- "@sap-ux/logger": "0.7.0"
18
+ "@sap-ux/logger": "0.7.1",
19
+ "@sap-ux/create": "0.13.163"
18
20
  },
19
21
  "keywords": [
20
22
  "mcp",
@@ -36,7 +38,9 @@
36
38
  "main": "index.js",
37
39
  "scripts": {
38
40
  "build-compile": "tsc --noEmit",
39
- "build": "npm-run-all -l -s build-compile update-embeddings-script",
41
+ "copy-create-readme": "node -e \"require('fs').copyFileSync('node_modules/@sap-ux/create/README.md', 'data_local/create-README.md')\"",
42
+ "fetch-ux-ui5-tooling-readme": "tsx src/scripts/load-readme-from-npm.ts @sap/ux-ui5-tooling",
43
+ "build": "npm-run-all -l -p build-compile copy-create-readme fetch-ux-ui5-tooling-readme update-embeddings-script",
40
44
  "update-docs-script": "tsx src/scripts/build-docs.ts",
41
45
  "update-local-docs": "tsx src/scripts/build-local-docs.ts",
42
46
  "update-docs": "npm-run-all -l -s clean-data update-docs-script",