Skip to content

Commit

Permalink
2.1.0 (#24)
Browse files Browse the repository at this point in the history
Signed-off-by: Anupam Kumar <kyteinsky@gmail.com>
  • Loading branch information
kyteinsky authored Aug 22, 2024
1 parent fd39799 commit 4f72708
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).


## [2.1.0] - 2024-08-22

### Fix

- Catch network exceptions and keep the loop going

### Change

- Migrate default config to llama compatible config
- Use COMPUTE_DEVICE to determine gpu offloading
- Use TaskProcessingProvider class for registration
- Better handling of app enabled state
- Download models on /init


## [2.0.1] - 2024-08-14

### Fix
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ help:
.PHONY: build-push
build-push:
docker login ghcr.io
docker build --push --platform linux/amd64 --tag ghcr.io/nextcloud/llm2:2.0.1 .
docker build --push --platform linux/amd64 --tag ghcr.io/nextcloud/llm2:2.1.0 --tag ghcr.io/nextcloud/llm2:latest .

.PHONY: download-models
download-models:
Expand Down
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
See [the nextcloud admin docs](https://docs.nextcloud.com/server/latest/admin_manual/ai/index.html) for more information.
]]></description>
<version>2.0.1</version>
<version>2.1.0</version>
<licence>MIT</licence>
<author mail="mklehr@gmx.net" homepage="https://github.com/marcelklehr">Marcel Klehr</author>
<author mail="bigcat88@icloud.com" homepage="https://github.com/bigcat88">Alexander Piskun</author>
Expand All @@ -25,7 +25,7 @@ See [the nextcloud admin docs](https://docs.nextcloud.com/server/latest/admin_ma
<docker-install>
<registry>ghcr.io</registry>
<image>nextcloud/llm2</image>
<image-tag>2.0.1</image-tag>
<image-tag>2.1.0</image-tag>
</docker-install>
<scopes>
<value>AI_PROVIDERS</value>
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "llm2"
version = "2.0.1"
version = "2.1.0"
description = ""
authors = ["Marcel Klehr <mklehr@gmx.net>"]
license = "AGPL-3.0"
Expand Down

0 comments on commit 4f72708

Please sign in to comment.