@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 +2 -0
- package/data/embeddings/documents_000.lance/_transactions/0-54258e4c-cc4d-4cc3-8e50-1eef58a33e52.txn +0 -0
- package/data/embeddings/documents_000.lance/_versions/1.manifest +0 -0
- package/data/embeddings/documents_000.lance/data/{4c7fc34f-b842-42ea-aea9-96c337ee8913.lance → 19ce4f55-035c-4757-8555-0b1581d38e19.lance} +0 -0
- package/data/embeddings/metadata.json +3 -3
- package/data/embeddings/table_index.json +1 -1
- package/package.json +5 -2
- package/data/embeddings/documents_000.lance/_transactions/0-45ec47ec-44a8-4f37-b180-b256e311557f.txn +0 -0
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
|
package/data/embeddings/documents_000.lance/_transactions/0-54258e4c-cc4d-4cc3-8e50-1eef58a33e52.txn
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"createdAt": "2025-10-
|
|
3
|
+
"createdAt": "2025-10-09T12:25:13.597Z",
|
|
4
4
|
"model": "Xenova/all-MiniLM-L6-v2",
|
|
5
5
|
"dimensions": 384,
|
|
6
|
-
"totalVectors":
|
|
7
|
-
"totalDocuments":
|
|
6
|
+
"totalVectors": 1323,
|
|
7
|
+
"totalDocuments": 1323,
|
|
8
8
|
"chunkSize": 2000,
|
|
9
9
|
"chunkOverlap": 100
|
|
10
10
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap-ux/fiori-docs-embeddings",
|
|
3
|
-
"version": "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
|
-
"
|
|
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",
|