From ce92a0b4f03d586b18559f005f564d0c425e3196 Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Mon, 3 Feb 2025 09:23:33 -0500 Subject: [PATCH] update changelog Signed-off-by: Vladimir Mandic --- CHANGELOG.md | 14 ++++++++++++++ modules/ui_control_helpers.py | 4 ++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a0a200bc..efdf22394 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ ## Update for 2025-02-03 +Just one week after latest release and what a week it was with over 50 commits! + +*What's New?* +- Rehosted core repo to new [home](https://github.com/vladmandic/sdnext) +- Switched to using `torch==2.6.0` and added support for nightly builds required for **nVidia Blackwell** GPUs +- Completely new **interrogate/captioning**, now supporting 150+ **OpenCLiP** models and 20+ built-in **VLMs** +- Support for **new VLMs**, New SOTA **background removal** +- Other: *torch tunable ops, extra networks search/filter, balanced offload, prompt parser, configurable tracebacks, etc.* +- Cumulative fixes... + +### Highlights for 2025-02-03 + +### Details for 2025-02-03 + - **GitHub** - rename core repo from to old repo url should automatically redirect to new one for seamless transition and in-place upgrades diff --git a/modules/ui_control_helpers.py b/modules/ui_control_helpers.py index 62688ea24..7a2c83b2f 100644 --- a/modules/ui_control_helpers.py +++ b/modules/ui_control_helpers.py @@ -50,8 +50,8 @@ def initialize(): def interrogate(): prompt = None try: - from modules.interrogate.interrogate import interrogate - prompt = interrogate(input_source[0]) + from modules.interrogate.interrogate import interrogate as interrogate_fn + prompt = interrogate_fn(input_source[0]) except Exception: pass return prompt