@sap-ai-sdk/orchestration
Version:
SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.
48 lines • 1.6 kB
JSON
{
"name": "@sap-ai-sdk/orchestration",
"version": "2.4.0",
"description": "",
"license": "Apache-2.0",
"keywords": [
"sap-ai-sdk",
"orchestration",
"llm-access"
],
"repository": {
"type": "git",
"url": "https://github.com/SAP/ai-sdk-js",
"directory": "packages/orchestration"
},
"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-cloud-sdk/util": "^4.2.0",
"yaml": "^2.8.2",
"@sap-ai-sdk/core": "^2.4.0",
"@sap-ai-sdk/ai-api": "^2.4.0",
"@sap-ai-sdk/prompt-registry": "^2.4.0"
},
"devDependencies": {
"@sap-cloud-sdk/http-client": "^4.2.0",
"@sap-cloud-sdk/connectivity": "^4.2.0"
},
"scripts": {
"compile": "tsc",
"compile:cjs": "tsc -p tsconfig.cjs.json",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"lint": "eslint \"**/*.ts\" && prettier . --config ../../.prettierrc --ignore-path ../../.prettierignore -c",
"lint:fix": "eslint \"**/*.ts\" --fix && prettier . --config ../../.prettierrc --ignore-path ../../.prettierignore -w --log-level error",
"generate": "openapi-generator --generateESM --clearOutputDir -i ./src/spec/api.yaml -o ./src/client",
"postgenerate": "rm ./src/client/api/*.ts && pnpm rename-generated-files && pnpm lint:fix",
"rename-generated-files": "node --no-warnings --loader ts-node/esm ../../scripts/postgenerate-orchestration.ts ./src/client/api"
}
}