From eff9999aa884f030701f70dee36711603bab8b6d Mon Sep 17 00:00:00 2001 From: HavenCTO Date: Mon, 6 Apr 2026 07:26:40 -0400 Subject: [PATCH] [Haven VLM Connector] Fix breaking change due to torchvision release (#695) --- plugins/AHavenVLMConnector/CHANGELOG.md | 4 ++++ plugins/AHavenVLMConnector/ahavenvlmconnector.yml | 2 +- plugins/AHavenVLMConnector/haven_vlm_connector.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/plugins/AHavenVLMConnector/CHANGELOG.md b/plugins/AHavenVLMConnector/CHANGELOG.md index 9fbe9a2..5f571e9 100644 --- a/plugins/AHavenVLMConnector/CHANGELOG.md +++ b/plugins/AHavenVLMConnector/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the A Haven VLM Connector project will be documented in this file. +## [1.1.1] - 2026-04-05 +### Fixes +- Mitigate TorchVision v0.26.0 release https://github.com/Haven-hvn/haven-vlm-engine-package/commit/7a3a6f9dd931237c93c5205f3d31df3e285ae21d + ## [1.0.0] - 2025-06-29 ### Added diff --git a/plugins/AHavenVLMConnector/ahavenvlmconnector.yml b/plugins/AHavenVLMConnector/ahavenvlmconnector.yml index d1c66bd..89827cb 100644 --- a/plugins/AHavenVLMConnector/ahavenvlmconnector.yml +++ b/plugins/AHavenVLMConnector/ahavenvlmconnector.yml @@ -1,7 +1,7 @@ name: Haven VLM Connector # requires: PythonDepManager description: Tag videos with Vision-Language Models using any OpenAI-compatible VLM endpoint -version: 1.1.0 +version: 1.1.1 url: https://discourse.stashapp.cc/t/haven-vlm-connector/5464 exec: - python diff --git a/plugins/AHavenVLMConnector/haven_vlm_connector.py b/plugins/AHavenVLMConnector/haven_vlm_connector.py index 872b303..176a717 100644 --- a/plugins/AHavenVLMConnector/haven_vlm_connector.py +++ b/plugins/AHavenVLMConnector/haven_vlm_connector.py @@ -35,7 +35,7 @@ try: "stashapi:stashapp-tools==0.2.58", "aiohttp==3.12.13", "pydantic==2.12.5", - "vlm-engine==1.0.0", + "vlm-engine==1.0.1", "pyyaml==6.0.2", )