mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-10 17:00:11 +01:00
dc4ad6b5a9
* wip bg workers for live document sync * Add ability to re-embed specific documents across many workspaces via background queue bgworkser is gated behind expieremental system setting flag that needs to be explictly enabled UI for watching/unwatching docments that are embedded. TODO: UI to easily manage all bg tasks and see run results TODO: UI to enable this feature and background endpoints to manage it * create frontend views and paths Move elements to correct experimental scope * update migration to delete runs on removal of watched document * Add watch support to YouTube transcripts (#1716) * Add watch support to YouTube transcripts refactor how sync is done for supported types * Watch specific files in Confluence space (#1718) Add failure-prune check for runs * create tmp workflow modifications for beta image * create tmp workflow modifications for beta image * create tmp workflow modifications for beta image * dual build update copy of alert modals * update job interval * Add support for live-sync of Github files * update copy for document sync feature * hide Experimental features from UI * update docs links * [FEAT] Implement new settings menu for experimental features (#1735) * implement new settings menu for experimental features * remove unused context save bar --------- Co-authored-by: timothycarambat <rambat1010@gmail.com> * dont run job on boot * unset workflow changes * Add persistent encryption service Relay key to collector so persistent encryption can be used Encrypt any private data in chunkSources used for replay during resync jobs * update jsDOC * Linting and organization * update modal copy for feature --------- Co-authored-by: Sean Hatfield <seanhatfield5@gmail.com>
105 lines
3.2 KiB
JSON
105 lines
3.2 KiB
JSON
{
|
|
"name": "anything-llm-server",
|
|
"version": "0.2.0",
|
|
"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 --ignore swagger --trace-warnings index.js",
|
|
"start": "NODE_ENV=production node index.js",
|
|
"lint": "yarn prettier --ignore-path ../.prettierignore --write ./endpoints ./models ./utils index.js",
|
|
"swagger": "node ./swagger/init.js",
|
|
"sqlite:migrate": "cd ./utils/prisma && node migrateFromSqlite.js"
|
|
},
|
|
"prisma": {
|
|
"seed": "node prisma/seed.js"
|
|
},
|
|
"dependencies": {
|
|
"@anthropic-ai/sdk": "^0.16.1",
|
|
"@azure/openai": "1.0.0-beta.10",
|
|
"@datastax/astra-db-ts": "^0.1.3",
|
|
"@google/generative-ai": "^0.7.1",
|
|
"@googleapis/youtube": "^9.0.0",
|
|
"@ladjs/graceful": "^3.2.2",
|
|
"@langchain/anthropic": "0.1.16",
|
|
"@langchain/community": "0.0.53",
|
|
"@langchain/core": "0.1.61",
|
|
"@langchain/openai": "0.0.28",
|
|
"@langchain/textsplitters": "0.0.0",
|
|
"@pinecone-database/pinecone": "^2.0.1",
|
|
"@prisma/client": "5.3.1",
|
|
"@qdrant/js-client-rest": "^1.9.0",
|
|
"@xenova/transformers": "^2.14.0",
|
|
"@zilliz/milvus2-sdk-node": "^2.3.5",
|
|
"archiver": "^5.3.1",
|
|
"bcrypt": "^5.1.0",
|
|
"body-parser": "^1.20.2",
|
|
"bree": "^9.2.3",
|
|
"chalk": "^4",
|
|
"check-disk-space": "^3.4.0",
|
|
"chromadb": "^1.5.2",
|
|
"cohere-ai": "^7.9.5",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.0.3",
|
|
"elevenlabs": "^0.5.0",
|
|
"express": "^4.18.2",
|
|
"express-ws": "^5.0.2",
|
|
"extract-json-from-string": "^1.0.1",
|
|
"extract-zip": "^2.0.1",
|
|
"graphql": "^16.7.1",
|
|
"joi": "^17.11.0",
|
|
"joi-password-complexity": "^5.2.0",
|
|
"js-tiktoken": "^1.0.7",
|
|
"jsonrepair": "^3.7.0",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"langchain": "0.1.36",
|
|
"mime": "^3.0.0",
|
|
"moment": "^2.29.4",
|
|
"mssql": "^10.0.2",
|
|
"multer": "^1.4.5-lts.1",
|
|
"mysql2": "^3.9.7",
|
|
"node-html-markdown": "^1.3.0",
|
|
"node-llama-cpp": "^2.8.0",
|
|
"ollama": "^0.5.0",
|
|
"openai": "4.38.5",
|
|
"pg": "^8.11.5",
|
|
"pinecone-client": "^1.1.0",
|
|
"pluralize": "^8.0.0",
|
|
"posthog-node": "^3.1.1",
|
|
"prisma": "5.3.1",
|
|
"slugify": "^1.6.6",
|
|
"sqlite": "^4.2.1",
|
|
"sqlite3": "^5.1.6",
|
|
"swagger-autogen": "^2.23.5",
|
|
"swagger-ui-express": "^5.0.0",
|
|
"truncate": "^3.0.0",
|
|
"url-pattern": "^1.0.3",
|
|
"uuid": "^9.0.0",
|
|
"uuid-apikey": "^1.5.3",
|
|
"vectordb": "0.4.11",
|
|
"weaviate-ts-client": "^1.4.0",
|
|
"winston": "^3.13.0"
|
|
},
|
|
"devDependencies": {
|
|
"@inquirer/prompts": "^4.3.1",
|
|
"eslint": "^8.50.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-ft-flow": "^3.0.0",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"eslint-plugin-react": "^7.33.2",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-react-refresh": "^0.4.3",
|
|
"flow-bin": "^0.217.0",
|
|
"flow-remove-types": "^2.217.1",
|
|
"globals": "^13.21.0",
|
|
"hermes-eslint": "^0.15.0",
|
|
"nodemon": "^2.0.22",
|
|
"prettier": "^3.0.3"
|
|
}
|
|
}
|