UNPKG

@sap-ai-sdk/langchain

Version:

SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.

43 lines 1.37 kB
{ "name": "@sap-ai-sdk/langchain", "version": "2.4.0", "description": "", "license": "Apache-2.0", "keywords": [ "sap-ai-sdk", "langchain" ], "repository": { "type": "git", "url": "https://github.com/SAP/ai-sdk-js", "directory": "packages/langchain" }, "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": { "@langchain/core": "^1.1.8", "@sap-cloud-sdk/connectivity": "^4.2.0", "@sap-cloud-sdk/util": "^4.2.0", "uuid": "^13.0.0", "@sap-ai-sdk/ai-api": "^2.4.0", "@sap-ai-sdk/foundation-models": "^2.4.0", "@sap-ai-sdk/orchestration": "^2.4.0", "@sap-ai-sdk/core": "^2.4.0" }, "scripts": { "compile": "tsc", "compile:cjs": "mv package.json package.json.bak && echo '{ \"type\": \"commonjs\" }' > package.json && tsc -p tsconfig.cjs.json && mv package.json.bak package.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" } }