mirror of
https://github.com/crowetic/nc-talk-ai.git
synced 2026-09-07 15:42: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.
33 lines
1.1 KiB
PHP
33 lines
1.1 KiB
PHP
<?php return array(
|
|
'root' => array(
|
|
'name' => 'nextcloud/educai',
|
|
'pretty_version' => 'dev-main',
|
|
'version' => 'dev-main',
|
|
'reference' => '7c601c9e40b3cda4c3f64eee26357844d8d0df38',
|
|
'type' => 'library',
|
|
'install_path' => __DIR__ . '/../../',
|
|
'aliases' => array(),
|
|
'dev' => false,
|
|
),
|
|
'versions' => array(
|
|
'bamarni/composer-bin-plugin' => array(
|
|
'pretty_version' => '1.8.2',
|
|
'version' => '1.8.2.0',
|
|
'reference' => '92fd7b1e6e9cdae19b0d57369d8ad31a37b6a880',
|
|
'type' => 'composer-plugin',
|
|
'install_path' => __DIR__ . '/../bamarni/composer-bin-plugin',
|
|
'aliases' => array(),
|
|
'dev_requirement' => false,
|
|
),
|
|
'nextcloud/educai' => array(
|
|
'pretty_version' => 'dev-main',
|
|
'version' => 'dev-main',
|
|
'reference' => '7c601c9e40b3cda4c3f64eee26357844d8d0df38',
|
|
'type' => 'library',
|
|
'install_path' => __DIR__ . '/../../',
|
|
'aliases' => array(),
|
|
'dev_requirement' => false,
|
|
),
|
|
),
|
|
);
|