@sap-ux/fiori-mcp-server 1.0.2 → 1.1.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 +2 -0
- package/dist/data/embeddings/embeddings.bin +0 -0
- package/dist/data/embeddings/metadata.json +10 -0
- package/dist/data/embeddings/records.jsonl +749 -0
- package/dist/index.js +990 -921
- package/dist/ort-wasm-simd-threaded.jsep.mjs +106 -0
- package/dist/ort-wasm-simd-threaded.mjs +59 -0
- package/dist/ort-wasm-simd-threaded.wasm +0 -0
- package/dist/prebuilds/keyring.darwin-arm64.node +0 -0
- package/dist/prebuilds/keyring.darwin-x64.node +0 -0
- package/dist/prebuilds/keyring.linux-arm-gnueabihf.node +0 -0
- package/dist/prebuilds/keyring.linux-arm64-gnu.node +0 -0
- package/dist/prebuilds/keyring.linux-arm64-musl.node +0 -0
- package/dist/prebuilds/keyring.linux-x64-gnu.node +0 -0
- package/dist/prebuilds/keyring.linux-x64-musl.node +0 -0
- package/dist/prebuilds/keyring.win32-arm64-msvc.node +0 -0
- package/dist/prebuilds/keyring.win32-x64-msvc.node +0 -0
- package/package.json +33 -38
package/README.md
CHANGED
|
@@ -165,6 +165,8 @@ Searches SAP Fiori elements, Annotations, UI5, SAP Fiori tools documentation for
|
|
|
165
165
|
|
|
166
166
|
Note: the results are based on the most recent indexed version of UI5 documentation
|
|
167
167
|
|
|
168
|
+
> **First-use download:** `search_docs` uses a local text-embedding model (`all-MiniLM-L6-v2`, ~86 MB) for semantic search. The model is downloaded from HuggingFace Hub on first use and cached locally (location follows the `HF_HOME` / `TRANSFORMERS_CACHE` environment variables, defaulting to `~/.cache/huggingface/hub`). Subsequent starts load the model from the cache with no network access required.
|
|
169
|
+
|
|
168
170
|
#### `list_fiori_apps`
|
|
169
171
|
Scans a specified directory to find existing SAP Fiori applications that can be modified.
|
|
170
172
|
|
|
Binary file
|