@sap-ux/fiori-docs-embeddings 0.1.0 → 0.2.0

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
@@ -17,6 +17,8 @@ https://github.com/SAP-samples/fiori-elements-feature-showcase (Feature examples
17
17
 
18
18
  https://ui5.sap.com/test-resources/sap/fe/macros/designtime/apiref/api.json (Design Time API Reference)
19
19
 
20
+ https://ui5.sap.com/test-resources/sap/fe/core/fpmExplorer/index.html#/overview/introduction SAP Fiori Development Portal
21
+
20
22
 
21
23
  - Parses markdown, JSON, TypeScript, and other file types
22
24
  - Generates AI-powered vector embeddings using transformers
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "version": "1.0.0",
3
- "createdAt": "2025-10-06T16:28:07.360Z",
3
+ "createdAt": "2025-10-09T12:25:13.597Z",
4
4
  "model": "Xenova/all-MiniLM-L6-v2",
5
5
  "dimensions": 384,
6
- "totalVectors": 1238,
7
- "totalDocuments": 1238,
6
+ "totalVectors": 1323,
7
+ "totalDocuments": 1323,
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": 1238
7
+ "totalVectors": 1323
8
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sap-ux/fiori-docs-embeddings",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "SAP Fiori documentation indexing",
5
5
  "private": false,
6
6
  "dependencies": {},
@@ -12,7 +12,9 @@
12
12
  "node-fetch": "^3.3.2",
13
13
  "marked": "^12.0.0",
14
14
  "gray-matter": "^4.0.3",
15
- "tsx": "^4.7.0"
15
+ "fast-xml-parser": "^4.3.4",
16
+ "tsx": "^4.7.0",
17
+ "@sap-ux/logger": "0.7.0"
16
18
  },
17
19
  "keywords": [
18
20
  "mcp",
@@ -36,6 +38,7 @@
36
38
  "build-compile": "tsc --noEmit",
37
39
  "build": "npm-run-all -l -s build-compile update-docs-script update-embeddings-script",
38
40
  "update-docs-script": "tsx src/scripts/build-docs.ts",
41
+ "update-local-docs": "tsx src/scripts/build-local-docs.ts",
39
42
  "update-docs": "npm-run-all -l -s clean-data update-docs-script",
40
43
  "update-embeddings-script": "tsx src/scripts/build-embeddings.ts",
41
44
  "update-embeddings": "npm-run-all -l -s clean-embeddings update-embeddings-script",