mirror of
https://github.com/crowetic/nc-talk-ai.git
synced 2026-09-07 07:32:31 +00:00
Talk AI is a multi-bot AI assistant manager for Nextcloud Talk: per-bot prompts and models, agentic tool calling (MCP + built-in tools), RAG over Nextcloud files, room-document search, vision and speech-to-text attachments, persistent bot wikis, approval workflows, rate limiting, and multi-provider LLM support (any OpenAI-compatible endpoint). Developed within EDUC - the European Digital UniverCity (https://educalliance.eu), where it runs as the 'EDUC AI' assistant on the alliance-wide Nextcloud portal. This public repository is the upstream point of truth; deployment-specific tools plug in via the tool-provider extension point (docs/TOOL_PROVIDERS.md). License: AGPL-3.0-or-later.
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"name": "educai",
|
|
"version": "1.0.0",
|
|
"license": "AGPL-3.0-or-later",
|
|
"engines": {
|
|
"node": "^22.0.0",
|
|
"npm": "^10.5.0"
|
|
},
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"dev": "vite --mode development build",
|
|
"watch": "vite --mode development build --watch",
|
|
"lint": "eslint src",
|
|
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css"
|
|
},
|
|
"type": "module",
|
|
"browserslist": [
|
|
"extends @nextcloud/browserslist-config"
|
|
],
|
|
"overrides": {
|
|
"fast-uri": "3.1.2",
|
|
"fast-xml-builder": "1.1.7",
|
|
"@nextcloud/eslint-plugin": {
|
|
"fast-xml-parser": "5.7.2"
|
|
},
|
|
"dompurify": "^3.4.11",
|
|
"qs": "^6.15.2",
|
|
"@babel/core": "^7.29.6",
|
|
"@microsoft/api-extractor": {
|
|
"minimatch": {
|
|
"brace-expansion": "^5.0.6"
|
|
}
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@nextcloud/axios": "^2.5.2",
|
|
"@nextcloud/dialogs": "^6.4.1",
|
|
"@nextcloud/files": "^3.12.0",
|
|
"@nextcloud/router": "^2.2.1",
|
|
"@nextcloud/vue": "^8.29.2",
|
|
"vue": "^2.7.16",
|
|
"vue-material-design-icons": "^5.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@nextcloud/browserslist-config": "^3.0.1",
|
|
"@nextcloud/eslint-config": "^8.4.2",
|
|
"@nextcloud/stylelint-config": "^3.1.0",
|
|
"@nextcloud/vite-config": "^1.5.2",
|
|
"vite": "^7.1.3",
|
|
"vite-plugin-eslint": "^1.8.1",
|
|
"vite-plugin-stylelint": "^6.0.2"
|
|
}
|
|
}
|