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

### Added
- Unified search provider tools
- Suggest tools for the user based on their interaction

### Changed
- ny_py_api updated to 0.24.2


## [2.4.0] - 2026-02-26

### 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 := 2.4.0
APP_VERSION := 2.5.0
JSON_INFO := "{\"id\":\"$(APP_ID)\",\"name\":\"$(APP_NAME)\",\"daemon_config_name\":\"manual_install\",\"version\":\"$(APP_VERSION)\",\"secret\":\"12345\",\"port\":9081}"


Expand Down
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>2.4.0</version>
<version>2.5.0</version>
<licence>MIT</licence>
<author mail="mklehr@gmx.net" homepage="https://marcelklehr.de">Marcel Klehr</author>
<namespace>ContextAgent</namespace>
Expand All @@ -45,7 +45,7 @@ Positive:
<docker-install>
<registry>ghcr.io</registry>
<image>nextcloud/context_agent</image>
<image-tag>2.3.0</image-tag>
<image-tag>2.5.0</image-tag>
</docker-install>
<routes>
<route>
Expand Down
95 changes: 55 additions & 40 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ package-mode = false

[tool.poetry.dependencies]
python = ">=3.11,<4"
nc-py-api = {extras = ["calendar"], version = "^0.22.0"}
nc-py-api = {extras = ["calendar"], version = "^0.24.2"}
langgraph = "1.*"
langchain = "^0.3.25"
ics = "^0.7.2"
Expand Down
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=2.3.0
APP_VERSION=2.5.0
NEXTCLOUD_URL=http://localhost:8080
COMPUTE_DEVICE=CPU
Loading