Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 22 additions & 20 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@ 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/).

## [2.6.0] - 2025-12-09

### Added

- Ship OLMo 3 model

### Fixed

- Update dependencies

## [2.5.0] - 2025-11-21

### Fixed
Expand Down Expand Up @@ -39,7 +49,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [2.4.0] - 2025-04-22

### New
### Added

- feat(chatwithtools): Use bare prompts instead of llama.cpp-builtin tool calling

Expand Down Expand Up @@ -71,17 +81,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

- fix: Update dependencies


## [2.3.1] -2025-02-20

### Fixed

- fix(ChatProcessor): Fix attribute access


## [2.3.0] -2025-02-18

### New
### Added

- enh: Always use the chat method
- feat: add changetone provider
Expand All @@ -91,7 +99,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

- fix: Rework task_processor loading to wait until model is loaded


## [2.2.2] - 2024-12-20

### Fixed
Expand All @@ -108,10 +115,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

- fixed failed import


## [2.2.0] - 2024-12-12

### New
### Added

- enh(summarize): Try to make it use bulleted lists for longer texts
- enh: Implement chatwithtools task type
Expand All @@ -125,44 +131,40 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [2.1.4] - 2024-09-12

### Fix
### Fixed

- update docker image version


## [2.1.3] - 2024-09-11

### Fix
### Fixed

- update context size for llama 3.1


## [2.1.2] - 2024-08-26

### Fix
### Fixed

- filename of the llama3.1 model in config
- catch JSONDecodeError for when server is in maintenance mode

### Change
### Changed

- better app_enabled handling


## [2.1.1] - 2024-08-23

### Fix
### Fixed

- compare uppercase COMPUTE_DEVICE value (#27)


## [2.1.0] - 2024-08-22

### Fix
### Fixed

- Catch network exceptions and keep the loop going

### Change
### Changed

- Migrate default config to llama compatible config
- Use COMPUTE_DEVICE to determine gpu offloading
Expand All @@ -173,7 +175,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [2.0.1] - 2024-08-14

### Fix
### Fixed

- Disable ContextWrite chain as it does not work with Llama 3 / 3.1

Expand All @@ -183,7 +185,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

- Requires Nextcloud 30 and AppAPI v3

### New
### Added

- feat: Update prompts and add new task types
- feat: Add task processing API
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

See [the nextcloud admin docs](https://docs.nextcloud.com/server/latest/admin_manual/ai/index.html) for more information.
]]></description>
<version>2.5.0</version>
<version>2.6.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 @@ -30,7 +30,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.5.0</image-tag>
<image-tag>2.6.0</image-tag>
</docker-install>
<system>false</system>
</external-app>
Expand Down
Loading