Skip to content

Commit d9ff4c0

Browse files
authored
Merge pull request #23 from nextcloud/release/2.0.1
v2.0.1
2 parents 050ed66 + 8f9e456 commit d9ff4c0

File tree

4 files changed

+35
-6
lines changed

4 files changed

+35
-6
lines changed

.github/workflows/integration-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ concurrency:
2020

2121
jobs:
2222
transcription:
23-
runs-on: ubuntu-22.04
23+
runs-on: ubuntu-latest
2424

2525
strategy:
2626
# do not stop on another job's failure
@@ -150,12 +150,12 @@ jobs:
150150
with:
151151
python-version: '3.11'
152152
cache: 'pip'
153-
cache-dependency-path: context_chat_backend/reqs.txt
153+
cache-dependency-path: context_chat_backend/requirements.cpu.txt
154154

155155
- name: Install and init backend
156156
run: |
157157
cd context_chat_backend
158-
pip install --no-deps -r requirements.txt
158+
pip install --no-deps -r requirements.cpu.txt
159159
pip install --upgrade pip setuptools wheel
160160
CMAKE_ARGS="-DLLAMA_OPENBLAS=on" pip install llama-cpp-python
161161
cp example.env .env
@@ -166,7 +166,7 @@ jobs:
166166
- name: Register backend
167167
run: |
168168
./occ app_api:daemon:register --net host manual_install "Manual Install" manual-install http localhost http://localhost:8080
169-
./occ app_api:app:register context_chat_backend manual_install --json-info "{\"appid\":\"context_chat_backend\",\"name\":\"Context Chat Backend\",\"daemon_config_name\":\"manual_install\",\"version\":\"1.2.0\",\"secret\":\"12345\",\"port\":10034,\"scopes\":[],\"system_app\":0}" --force-scopes --wait-finish
169+
./occ app_api:app:register context_chat_backend manual_install --json-info "{\"appid\":\"context_chat_backend\",\"name\":\"Context Chat Backend\",\"daemon_config_name\":\"manual_install\",\"version\":\"2.0.1\",\"secret\":\"12345\",\"port\":10034,\"scopes\":[],\"system_app\":0}" --force-scopes --wait-finish
170170
171171
- name: Scan files
172172
run: |

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
88

9+
## 2.0.1 – 2024-03-23
10+
11+
### Fixed
12+
- update integration-test.yml
13+
- separate ProviderConfigService
14+
- IndexerJob: Avoid sending the same resource multiple times
15+
16+
917
## 2.0.0 – 2024-03-21
1018

1119
### Changed

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
11
# Nextcloud Assistant Context Chat
22

3-
NYI
3+
## Install
4+
1. Install two other mandatory apps for this app to work as desired in your Nextcloud install from the "Apps" page:
5+
- AppAPI (>= v2.0.x): https://apps.nextcloud.com/apps/app_api
6+
- Assistant: 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 Text Processing OCP API consumer like the Assistant app.)
7+
2. Install this app (Nextcloud Assistant Context Chat): https://apps.nextcloud.com/apps/context_chat
8+
3. Install the Context Chat Backend app (https://apps.nextcloud.com/apps/context_chat_backend) from the "External Apps" page. It is important to note here that the backend app should have the same major and minor version as this app (context_chat)
9+
4. Start using Context Chat from the Assistant UI
10+
11+
> [!NOTE]
12+
> 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.
13+
> Please open an issue if you need help :)

appinfo/info.xml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,19 @@
55
<summary>Chat with your documents</summary>
66
<description><![CDATA[
77
Ask questions to nextcloud Assistant about the content of your documents.
8+
9+
## Install
10+
1. Install two other mandatory apps for this app to work as desired in your Nextcloud install from the "Apps" page:
11+
- AppAPI (>= v2.0.x): https://apps.nextcloud.com/apps/app_api
12+
- Assistant: 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 Text Processing OCP API consumer like the Assistant app.)
13+
2. Install this app (Nextcloud Assistant Context Chat): https://apps.nextcloud.com/apps/context_chat
14+
3. Install the Context Chat Backend app (https://apps.nextcloud.com/apps/context_chat_backend) from the "External Apps" page. It is important to note here that the backend app should have the same major and minor version as this app (context_chat)
15+
4. Start using Context Chat from the Assistant UI
16+
17+
Note:
18+
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.
819
]]></description>
9-
<version>2.0.0</version>
20+
<version>2.0.1</version>
1021
<licence>agpl</licence>
1122
<author>Julien Veyssier</author>
1223
<namespace>ContextChat</namespace>

0 commit comments

Comments
 (0)