mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-11 01:10:11 +01:00
2e813846dc
* WIP agent support * move agent folder * wip frontend socket * checkpoint * fix schema * Checkpoint for plugins and AgentHandler * refactor plugins and agent arch * agent error reporting and handling * add frontend elements for agents in prompt input * WIP integrations for agents * enable web-search agent config from frontend * persist chat history * update alert * update migration remove console logs update close state for agent invocations * add examples to dockerignore Extract statusResponse to its own component * update close method * wrap scraping rejections * add RAG search as funciton * Add telem and link highlight * chat support * patch memory * Add rechart as a plugin option * Toggles for abilites of default agent (system wide) Validate values for agent skills Enable dynamic loading of skills UI for toggle of skills * add UI for toggle of configs for agent * toggle WS or WSS protocol * update NGNIX proxy pass * move components around and capture failed websocket creation * fix name * tmp docker image * reset workflow * safety mark functions * telem on tool calls * remove hardcode short circuit * separate web-browser from scrape * extract summarizer to util add abort handlers and controller for langchain stuff so socket close kills process * langchain summarize verbose when in dev * chart styling improvements + add title to chart * fix legend from being cutoff in chart downloads * remove cursor blink --------- Co-authored-by: shatfield4 <seanhatfield5@gmail.com>
66 lines
1.9 KiB
JSON
66 lines
1.9 KiB
JSON
{
|
|
"name": "anything-llm-frontend",
|
|
"private": false,
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "vite --open",
|
|
"dev": "NODE_ENV=development vite --debug --host=0.0.0.0",
|
|
"build": "vite build",
|
|
"lint": "yarn prettier --write ./src",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@metamask/jazzicon": "^2.0.0",
|
|
"@microsoft/fetch-event-source": "^2.0.1",
|
|
"@phosphor-icons/react": "^2.0.13",
|
|
"@tremor/react": "^3.15.1",
|
|
"dompurify": "^3.0.8",
|
|
"file-saver": "^2.0.5",
|
|
"he": "^1.2.0",
|
|
"highlight.js": "^11.9.0",
|
|
"lodash.debounce": "^4.0.8",
|
|
"markdown-it": "^13.0.1",
|
|
"pluralize": "^8.0.0",
|
|
"react": "^18.2.0",
|
|
"react-device-detect": "^2.2.2",
|
|
"react-dom": "^18.2.0",
|
|
"react-dropzone": "^14.2.3",
|
|
"react-loading-skeleton": "^3.1.0",
|
|
"react-router-dom": "^6.3.0",
|
|
"react-tag-input-component": "^2.0.2",
|
|
"react-toastify": "^9.1.3",
|
|
"react-tooltip": "^5.25.2",
|
|
"recharts": "^2.12.5",
|
|
"recharts-to-png": "^2.3.1",
|
|
"text-case": "^1.0.9",
|
|
"truncate": "^3.0.0",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
|
|
"@types/react": "^18.2.23",
|
|
"@types/react-dom": "^18.2.8",
|
|
"@types/react-router-dom": "^5.3.3",
|
|
"@vitejs/plugin-react": "^4.0.0-beta.0",
|
|
"autoprefixer": "^10.4.14",
|
|
"buffer": "^6.0.3",
|
|
"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",
|
|
"postcss": "^8.4.23",
|
|
"prettier": "^3.0.3",
|
|
"rollup-plugin-visualizer": "^5.9.0",
|
|
"tailwindcss": "^3.3.1",
|
|
"vite": "^4.3.0"
|
|
}
|
|
}
|