mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-05 06:20:10 +01:00
cf0b24af02
* Add Qdrant support for embedding, chat, and conversation * Change comments
54 lines
1.5 KiB
JSON
54 lines
1.5 KiB
JSON
{
|
|
"name": "anything-llm-server",
|
|
"version": "0.0.1-beta",
|
|
"description": "Server endpoints to process or create content for chatting",
|
|
"main": "index.js",
|
|
"author": "Timothy Carambat (Mintplex Labs)",
|
|
"license": "MIT",
|
|
"private": false,
|
|
"engines": {
|
|
"node": ">=18.12.1"
|
|
},
|
|
"scripts": {
|
|
"dev": "NODE_ENV=development nodemon --ignore documents --ignore vector-cache --ignore storage --trace-warnings index.js",
|
|
"start": "NODE_ENV=production node index.js",
|
|
"lint": "yarn prettier --write ./endpoints ./models ./utils index.js"
|
|
},
|
|
"dependencies": {
|
|
"@azure/openai": "^1.0.0-beta.3",
|
|
"@googleapis/youtube": "^9.0.0",
|
|
"@pinecone-database/pinecone": "^0.1.6",
|
|
"@qdrant/js-client-rest": "^1.4.0",
|
|
"archiver": "^5.3.1",
|
|
"bcrypt": "^5.1.0",
|
|
"body-parser": "^1.20.2",
|
|
"check-disk-space": "^3.4.0",
|
|
"chromadb": "^1.5.2",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.0.3",
|
|
"express": "^4.18.2",
|
|
"extract-zip": "^2.0.1",
|
|
"graphql": "^16.7.1",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"langchain": "^0.0.90",
|
|
"mime": "^3.0.0",
|
|
"moment": "^2.29.4",
|
|
"multer": "^1.4.5-lts.1",
|
|
"openai": "^3.2.1",
|
|
"pinecone-client": "^1.1.0",
|
|
"posthog-node": "^3.1.1",
|
|
"serve-index": "^1.9.1",
|
|
"slugify": "^1.6.6",
|
|
"sqlite": "^4.2.1",
|
|
"sqlite3": "^5.1.6",
|
|
"uuid": "^9.0.0",
|
|
"uuid-apikey": "^1.5.3",
|
|
"vectordb": "0.1.12",
|
|
"weaviate-ts-client": "^1.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^2.0.22",
|
|
"prettier": "^2.4.1"
|
|
}
|
|
}
|