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.
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"name": "nextcloud/educai",
|
|
"description": "Multi-bot manager for Nextcloud Talk (OpenAI-compatible)",
|
|
"license": "AGPL-3.0-or-later",
|
|
"authors": [
|
|
{
|
|
"name": "Pascal Kienast",
|
|
"email": "pascal.kienast@uni-potsdam.de",
|
|
"homepage": "https://educalliance.eu"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"OCA\\EducAI\\": "lib/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-install-cmd": [
|
|
"@composer bin all install --ansi"
|
|
],
|
|
"post-update-cmd": [
|
|
"@composer bin all install --ansi"
|
|
],
|
|
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './vendor-bin/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
|
|
"cs:check": "php-cs-fixer fix --dry-run --diff",
|
|
"cs:fix": "php-cs-fixer fix",
|
|
"psalm": "psalm --threads=1 --no-cache",
|
|
"test:unit": "phpunit tests -c tests/phpunit.xml --colors=always --fail-on-warning --fail-on-risky",
|
|
"openapi": "generate-spec",
|
|
"rector": "rector && composer cs:fix"
|
|
},
|
|
"require": {
|
|
"bamarni/composer-bin-plugin": "^1.8",
|
|
"php": "^8.1"
|
|
},
|
|
"require-dev": {
|
|
"nextcloud/ocp": "dev-stable30",
|
|
"roave/security-advisories": "dev-latest"
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"bamarni/composer-bin-plugin": true
|
|
},
|
|
"optimize-autoloader": true,
|
|
"sort-packages": true,
|
|
"platform": {
|
|
"php": "8.1"
|
|
}
|
|
}
|
|
}
|