mirror of
https://github.com/Mintplex-Labs/langchainjs.git
synced 2026-08-24 20:31:43 -04:00
687f2c8047
* chore(langchain): add typesense * feat(langchain/vectorstores): add typesense vectorstore * tests(langchain/vectorstore): add tests transform between docs & typesense records * docs(examples): add typesense vectorstore examples * feat(vectorstores/typesense): add fromTexts * docs(examples): add typesense client to example * docs(examples): add import and similarity search examples * chore(package): typesense as peerDependency * chore(create-entrypoints): add vectorstores/typesense * chore(package): typesense optional dep * lint(vectorstores/typesense): fix errors * fix(vectorstores/typesense): throw error instead of catch it * refactor(vectorstores/typesense): use asyncCaller in default import * refactor(vectorstores/typesense): impor types with import type * feat(vectorstores/typesense): add similaritySearchVectorWithScore & similaritySearchWithScore methods * Fix entrypoints * Remove unnecessary TypeSense initialisation * fix(examples/typesense): add missing properties * feat(typesense): add documentation * fix deleted entry points by error * fix deleted entry points by error * Some fixes * Fix bug * refactor(typesense): remove modifySearchParams, use filters * fix on docs * feat(typesense): addVectors method implemented * fix(typesense): change test after change * Updates * Update docs --------- Co-authored-by: Tat Dat Duong <david@duong.cz> Co-authored-by: Nuno Campos <nuno@boringbits.io>
71 lines
2.1 KiB
JSON
71 lines
2.1 KiB
JSON
{
|
|
"name": "examples",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"description": "Langchain examples",
|
|
"main": "./dist/index.js",
|
|
"type": "module",
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc --declaration --outDir dist/",
|
|
"start": "tsx -r dotenv/config src/index.ts",
|
|
"postinstall": "prisma generate --schema ./src/indexes/vector_stores/prisma_vectorstore/prisma/schema.prisma",
|
|
"start:dist": "yarn build && node -r dotenv/config dist/index.js",
|
|
"lint": "eslint src",
|
|
"lint:fix": "yarn lint --fix",
|
|
"precommit": "tsc --noEmit && lint-staged",
|
|
"format": "prettier --write \"**/*.ts\"",
|
|
"format:check": "prettier --check \"**/*.ts\""
|
|
},
|
|
"author": "LangChain",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@clickhouse/client": "^0.0.14",
|
|
"@getmetal/metal-sdk": "^4.0.0",
|
|
"@getzep/zep-js": "0.3.1",
|
|
"@gomomento/sdk": "^1.23.0",
|
|
"@opensearch-project/opensearch": "^2.2.0",
|
|
"@pinecone-database/pinecone": "^0.0.14",
|
|
"@prisma/client": "^4.11.0",
|
|
"@supabase/supabase-js": "^2.10.0",
|
|
"@tensorflow/tfjs-backend-cpu": "^4.4.0",
|
|
"@tigrisdata/vector": "^1.1.0",
|
|
"@upstash/redis": "^1.20.6",
|
|
"@zilliz/milvus2-sdk-node": "^2.2.7",
|
|
"axios": "^0.26.0",
|
|
"chromadb": "^1.4.0",
|
|
"faiss-node": "^0.2.1",
|
|
"graphql": "^16.6.0",
|
|
"js-yaml": "^4.1.0",
|
|
"langchain": "workspace:*",
|
|
"ml-distance": "^4.0.0",
|
|
"mongodb": "^5.2.0",
|
|
"mysql2": "^3.3.3",
|
|
"pickleparser": "^0.1.0",
|
|
"prisma": "^4.11.0",
|
|
"redis": "^4.6.6",
|
|
"sqlite3": "^5.1.4",
|
|
"typeorm": "^0.3.12",
|
|
"typesense": "^1.5.3",
|
|
"weaviate-ts-client": "^1.0.0",
|
|
"zod": "^3.21.4"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/recommended": "^1.0.2",
|
|
"@types/js-yaml": "^4",
|
|
"@typescript-eslint/eslint-plugin": "^5.51.0",
|
|
"@typescript-eslint/parser": "^5.51.0",
|
|
"dotenv": "^16.0.3",
|
|
"eslint": "^8.33.0",
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"prettier": "^2.8.3",
|
|
"tsx": "^3.12.3",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|