UNPKG

sarvam-ai-provider

Version:

The **Sarvam AI SDK Provider** is a library developed to integrate with the Vercel AI SDK. This library brings Speech to Text (STT) capabilities to your applications, allowing for seamless interaction with audio and text data.

76 lines 1.99 kB
{ "name": "sarvam-ai-provider", "version": "1.0.2", "license": "MIT", "author": { "name": "Mrinank Bhowmick", "url": "https://github.com/Mrinank-Bhowmick/" }, "sideEffects": false, "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "files": [ "dist/**/*", "internal/dist/**/*", "CHANGELOG.md", "LICENSE" ], "exports": { "./package.json": "./package.json", ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "dependencies": { "@ai-sdk/provider": "1.1.3", "@ai-sdk/provider-utils": "2.2.7" }, "devDependencies": { "@types/node": "20.17.24", "tsup": "^8", "typescript": "5.6.3", "zod": "3.23.8", "@vercel/ai-tsconfig": "0.0.0" }, "peerDependencies": { "zod": "^3.0.0" }, "engines": { "node": ">=18" }, "publishConfig": { "access": "public" }, "homepage": "https://sdk.vercel.ai/providers/community-providers/sarvam", "repository": { "type": "git", "url": "git+https://github.com/Mrinank-Bhowmick/vercel-ai-sdk.git" }, "bugs": { "url": "https://github.com/Mrinank-Bhowmick/vercel-ai-sdk/issues" }, "keywords": [ "sarvam", "ai", "sarvam vercel ai-sdk", "indian-languages", "speech-recognition" ], "scripts": { "build": "tsup", "build:watch": "tsup --watch", "clean": "rm -rf dist && rm -rf internal/dist", "lint": "eslint \"./**/*.ts*\"", "type-check": "tsc --noEmit", "prettier-check": "prettier --check \"./**/*.ts*\"", "test": "pnpm test:node && pnpm test:edge", "test:edge": "vitest --config vitest.edge.config.js --run", "test:node": "vitest --config vitest.node.config.js --run", "test:node:watch": "vitest --config vitest.node.config.js --watch", "clean-changesets": "rm .changeset/*.md", "version-and-clean": "pnpm changeset version && pnpm run clean-changesets" } }