UNPKG

@sap-ai-sdk/document-grounding

Version:

> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.

36 lines 1.2 kB
{ "name": "@sap-ai-sdk/document-grounding", "version": "1.17.0", "description": "", "license": "Apache-2.0", "keywords": [ "sap-ai-sdk", "document-grounding", "rag", "grounding", "vector" ], "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist/**/*.js", "dist/**/*.js.map", "dist/**/*.d.ts", "dist/**/*.d.ts.map", "internal.js", "internal.d.ts" ], "dependencies": { "@sap-ai-sdk/core": "^1.17.0" }, "scripts": { "compile": "tsc", "compile:cjs": "tsc -p tsconfig.cjs.json", "test": "NODE_OPTIONS=--experimental-vm-modules jest", "lint": "eslint . && prettier . --config ../../.prettierrc --ignore-path ../../.prettierignore -c", "lint:fix": "eslint . --fix && prettier . --config ../../.prettierrc --ignore-path ../../.prettierignore -w --log-level error", "generate": "openapi-generator --generateESM --clearOutputDir -i ./src/spec/api.yaml -o ./src/client -s ./src/spec/options-per-service.json && pnpm update-imports && pnpm lint:fix", "update-imports": "node --no-warnings --loader ts-node/esm ../../scripts/update-imports.ts ./src/client/api" } }