UNPKG

@sap-ai-sdk/foundation-models

Version:

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

54 lines 1.51 kB
{ "name": "@sap-ai-sdk/foundation-models", "version": "2.15.0", "description": "", "license": "Apache-2.0", "keywords": [ "sap-ai-sdk", "foundation-models", "llm-access" ], "repository": { "type": "git", "url": "https://github.com/SAP/ai-sdk-js", "directory": "packages/foundation-models" }, "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./internal.js": { "types": "./dist/internal.d.ts", "default": "./dist/internal.js" } }, "files": [ "dist/**/*.js", "dist/**/*.js.map", "dist/**/*.d.ts", "dist/**/*.d.ts.map" ], "dependencies": { "@sap-cloud-sdk/connectivity": "^4.8.0", "@sap-cloud-sdk/http-client": "^4.8.0", "@sap-cloud-sdk/util": "^4.8.0", "@sap-ai-sdk/ai-api": "^2.15.0", "@sap-ai-sdk/core": "^2.15.0" }, "devDependencies": { "vitest": "4.1.10" }, "scripts": { "compile": "tsc", "test": "vitest run", "lint": "oxlint && oxfmt --check .", "lint:fix": "oxlint --fix && oxfmt .", "generate": "pnpm generate:azure-openai", "generate:azure-openai": "cd ./src/azure-openai/spec && openapi-generator --resolveExternal false --generateESM --clearOutputDir -i ./inference.json -o ../client --schemaPrefix AzureOpenAi && cd ..", "postgenerate:azure-openai": "rm ./src/azure-openai/client/inference/*.ts && pnpm lint:fix" } }