-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathinfo.xml
More file actions
66 lines (62 loc) · 3.62 KB
/
info.xml
File metadata and controls
66 lines (62 loc) · 3.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0"?>
<!--
- SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<info>
<id>context_chat</id>
<name>Nextcloud Assistant Context Chat</name>
<summary>Chat with your documents</summary>
<description><
- [Context Chat Backend (same major and minor version as Context Chat app below) from the External Apps page](https://apps.nextcloud.com/apps/context_chat_backend)
- [Context Chat (same major and minor version as the backend) from the Apps page](https://apps.nextcloud.com/apps/context_chat)
- [Assistant from the Apps page](https://apps.nextcloud.com/apps/assistant). The OCS API or the `occ` commands can also be used to interact with this app but it recommended to do that through a Task Processing OCP API consumer like the Assistant app, which is also the officially supported universal UI for all the AI providers.
- Text2Text Task Processing Provider like [llm2 from the External Apps page](https://apps.nextcloud.com/apps/llm2) or [integration_openai from the Apps page](https://apps.nextcloud.com/apps/integration_openai)
Setup background job workers as described here: https://docs.nextcloud.com/server/latest/admin_manual/ai/overview.html#improve-ai-task-pickup-speed
Note:
Refer to the [Context Chat Backend's readme](https://github.com/nextcloud/context_chat_backend/?tab=readme-ov-file) and the [AppAPI's documentation](https://cloud-py-api.github.io/app_api/) for help with setup of AppAPI's deploy daemon.
]]></description>
<version>4.4.2</version>
<licence>agpl</licence>
<author>Julien Veyssier</author>
<author>Anupam Kumar</author>
<author>Marcel Klehr</author>
<namespace>ContextChat</namespace>
<documentation>
<developer>https://github.com/nextcloud/context_chat</developer>
</documentation>
<category>ai</category>
<website>https://github.com/nextcloud/context_chat</website>
<bugs>https://github.com/nextcloud/context_chat/issues</bugs>
<screenshot>https://raw.githubusercontent.com/nextcloud/context_chat/main/img/Logo.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/context_chat/main/screenshots/context_chat_1.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/context_chat/main/screenshots/context_chat_2.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/context_chat/main/screenshots/context_chat_4.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/context_chat/main/screenshots/context_chat_5.png</screenshot>
<dependencies>
<nextcloud min-version="30" max-version="32"/>
</dependencies>
<background-jobs>
<job>OCA\ContextChat\BackgroundJobs\SchedulerJob</job>
<job>OCA\ContextChat\BackgroundJobs\FileSystemListenerJob</job>
<job>OCA\ContextChat\BackgroundJobs\ActionJob</job>
<job>OCA\ContextChat\BackgroundJobs\RotateLogsJob</job>
</background-jobs>
<commands>
<command>OCA\ContextChat\Command\Prompt</command>
<command>OCA\ContextChat\Command\Search</command>
<command>OCA\ContextChat\Command\ScanFiles</command>
<command>OCA\ContextChat\Command\Statistics</command>
</commands>
<repair-steps>
<install>
<step>OCA\ContextChat\Repair\AppInstallStep</step>
</install>
</repair-steps>
<settings>
<admin>OCA\ContextChat\Settings\AdminSettings</admin>
</settings>
</info>