Skip to content

Commit

Permalink
1.2.0
Browse files Browse the repository at this point in the history
Signed-off-by: Anupam Kumar <kyteinsky@gmail.com>
  • Loading branch information
kyteinsky committed Jun 27, 2024
1 parent ea4d99e commit dd432b8
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 4 deletions.
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 buildx build --push --platform linux/amd64 --tag ghcr.io/nextcloud/llm2:1.1.0 .
docker buildx build --push --platform linux/amd64 --tag ghcr.io/nextcloud/llm2:1.2.0 .

.PHONY: download-models
download-models:
Expand Down
6 changes: 3 additions & 3 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<![CDATA[
**Requires [`AppAPI`](https://github.com/cloud-py-api/app_api) to work.**
]]></description>
<version>1.1.0</version>
<licence>MIT</licence>
<version>1.2.0</version>
<licence>agpl</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>
<namespace>PyAppV2_llm2</namespace>
Expand All @@ -23,7 +23,7 @@
<docker-install>
<registry>ghcr.io</registry>
<image>nextcloud/llm2</image>
<image-tag>1.1.0</image-tag>
<image-tag>1.2.0</image-tag>
</docker-install>
<scopes>
<value>AI_PROVIDERS</value>
Expand Down
54 changes: 54 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Change Log
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 1.2.0 – 2024-06-27
### Added
feat: Make model uses same language as the prompt @marcelklehr
README: Add link to nc admin docs @marcelklehr

### Fixed
fix: lazy load models @kyteinsky
flush print outputs @kyteinsky
adjustments for the Server branch split @bigcat88

## 1.1.0 – 2023-12-21
Allow loading chains from persistent_storage @marcelklehr
fix(typo) @marcelklehr
Update docker and make files @MB-Finski
Fix config path @MB-Finski
Improve file_name handling for config loading @MB-Finski
Sync improvents over from llm app @MB-Finski
fix(makefile) @marcelklehr
fix(chains.py): Remove GPU support @marcelklehr
AppAPI 2.0.3+/AppStore changes @bigcat88
fix(Makefile): Remove ARM support @marcelklehr
fix(main.py): Remove timeout from TASK_LIST.get @marcelklehr
fix(Dockerfile): Add image source tag @marcelklehr
fix(chains): Add max_token param @marcelklehr

## 1.0.2 – 2023-12-21
Fix makefile @marcelklehr

## 1.0.1 – 2023-12-21
Fix release workflow @marcelklehr

## 1.0.0 – 2023-12-21
Update release workflow @marcelklehr
lint all the things @marcelklehr
update info.xml @marcelklehr
update README and Makefile @marcelklehr
lint all the things @marcelklehr
Fix provider display name @marcelklehr
Fix dockerfile @marcelklehr
Get provider working @marcelklehr
Update makefile @marcelklehr
initial commit @marcelklehr
updated readme and appstore files @bigcat88
linters, etc.. @bigcat88
freeprompt -> story format @bigcat88
fix: report only result @bigcat88
initial commit @bigcat88
Initial commit @bigcat88

0 comments on commit dd432b8

Please sign in to comment.