UNPKG

cag-js

Version:

Chunked Augmented Generation (CAG) algorithm for processing large text inputs with AI models

62 lines (61 loc) 1.6 kB
{ "name": "cag-js", "version": "1.0.4", "description": "Chunked Augmented Generation (CAG) algorithm for processing large text inputs with AI models", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "test": "jest --config jest.config.js", "test:watch": "jest --watch", "prepare": "npm run build", "lint": "eslint src/**/*.ts", "format": "prettier --write \"src/**/*.ts\"" }, "keywords": [ "cag", "cag-js", "chunked-augmented-generation", "ai", "text-processing", "chunking", "nlp", "language-model" ], "author": "Vivek Vellaiyappn Surulimuthu", "license": "MIT", "dependencies": { "@langchain/textsplitters": "^0.1.0" }, "devDependencies": { "@babel/core": "^7.22.0", "@babel/preset-env": "^7.22.0", "@babel/preset-typescript": "^7.22.0", "@types/jest": "^29.5.0", "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "babel-jest": "^29.5.0", "eslint": "^8.0.0", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", "prettier": "^3.0.0", "regenerator-runtime": "^0.14.1", "ts-jest": "^29.1.0", "typescript": "^5.0.0", "web-streams-polyfill": "^4.0.0" }, "files": [ "dist", "LICENSE", "README.md" ], "repository": { "type": "git", "url": "git+https://github.com/vivekvells/cag-js.git" }, "bugs": { "url": "https://github.com/vivekvells/cag-js/issues" }, "homepage": "https://github.com/vivekvells/cag-js#readme" }