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
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,33 @@ 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] - 2025-06-03

### Added
- image generation tool (AI)
- settings to dis/-able tools
- HaRP-Support
- added used tools to output so that Assistant can show them
- document generation tools: text documents, spreadsheets and slides
- Public transport tool using HERE API
- Routing tool using OPenStreetMap
- get file content tool (Files)
- get folder tree tool (Files)
- create a public share link tool (Files)
- get mail accounts tool (Mail)
- Web search tool using DuckDuckGo
- OpenProject tools: list projects and create workpackage

### Changed
- use poetry instead of pip to manage dependencies
- Mail tool doesn't need the account ID anymore, it can be obtained by another tool
- calendar tools improved

### Fixed
- output when using Llama 3.1 fixed
- context chat tool fixed


## [1.1.0] - 2025-02-25

### Added
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

APP_ID := context_agent
APP_NAME := Nextcloud Context Agent
APP_VERSION := 1.1.0
APP_VERSION := 1.2.0
JSON_INFO := "{\"id\":\"$(APP_ID)\",\"name\":\"$(APP_NAME)\",\"daemon_config_name\":\"manual_install\",\"version\":\"$(APP_VERSION)\",\"secret\":\"12345\",\"port\":9081}"


Expand Down
6 changes: 6 additions & 0 deletions REUSE.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,9 @@ path = "poetry.lock"
precedence = "aggregate"
SPDX-FileCopyrightText = "2024 Nextcloud GmbH and Nextcloud contributors"
SPDX-License-Identifier = "AGPL-3.0-or-later"

[[annotations]]
path = ["l10n/**.js", "l10n/**.json", "translationfiles/**/context_agent.po"]
precedence = "aggregate"
SPDX-FileCopyrightText = "2025 Nextcloud GmbH and Nextcloud contributors"
SPDX-License-Identifier = "AGPL-3.0-or-later"
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Positive:
* The software for this app is open source, no trained AI model is used
]]>
</description>
<version>1.1.0</version>
<version>1.2.0</version>
<licence>MIT</licence>
<author mail="[email protected]" homepage="https://marcelklehr.de">Marcel Klehr</author>
<namespace>ContextAgent</namespace>
Expand All @@ -44,7 +44,7 @@ Positive:
<docker-install>
<registry>ghcr.io</registry>
<image>nextcloud/context_agent</image>
<image-tag>1.1.0</image-tag>
<image-tag>1.2.0</image-tag>
</docker-install>
</external-app>
</info>
2 changes: 1 addition & 1 deletion test.env
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ APP_HOST=0.0.0.0
APP_ID=context_agent
APP_PORT=9081
APP_SECRET=12345
APP_VERSION=1.0.0
APP_VERSION=1.2.0
NEXTCLOUD_URL=http://localhost:8080
COMPUTE_DEVICE=CPU
Loading