diff --git a/CHANGELOG.md b/CHANGELOG.md index 52240a0e3..7d735a94f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,8 @@ # Change Log for SD.Next -## Update for 2025-02-17 +## Update for 2025-02-18 -### TODO - -- CogView4 - -### Highlight for 2025-02-17 +### Highlight for 2025-02-18 We're back with another update with over 50 commits! - Starting with massive UI update with full [localization](https://vladmandic.github.io/sdnext-docs/Locale/) for 8 languages @@ -23,7 +19,7 @@ We're back with another update with over 50 commits! *...and more* - see [changelog](https://github.com/vladmandic/sdnext/blob/dev/CHANGELOG.md) for full details! -### Details for 2025-02-17 +### Details for 2025-02-18 - **User Interface** - **Hints** diff --git a/TODO.md b/TODO.md index 8249196ca..69606a375 100644 --- a/TODO.md +++ b/TODO.md @@ -8,6 +8,7 @@ Main ToDo list can be found at [GitHub projects](https://github.com/users/vladma - Flux NF4 loader: - IPAdapter negative: - Control API enhance scripts compatibility +- CogView4 ## Code TODO @@ -24,4 +25,3 @@ Main ToDo list can be found at [GitHub projects](https://github.com/users/vladma - sana: fails when quantized (fixme) - support scripts via api (fixme) - transformer from-single-file with quant (fixme) -- vlm: add additional models (fixme) diff --git a/installer.py b/installer.py index ccaeb1227..0deacf675 100644 --- a/installer.py +++ b/installer.py @@ -532,7 +532,7 @@ def check_diffusers(): t_start = time.time() if args.skip_all or args.skip_git: return - sha = '5105b5a83d04323dc583846a12be054e3701c4ed' # diffusers commit hash + sha = 'b75b204a584e29ebf4e80a61be11458e9ed56e3e' # diffusers commit hash pkg = pkg_resources.working_set.by_key.get('diffusers', None) minor = int(pkg.version.split('.')[1] if pkg is not None else 0) cur = opts.get('diffusers_version', '') if minor > 0 else '' diff --git a/modules/interrogate/vqa.py b/modules/interrogate/vqa.py index c12067014..adb578e6b 100644 --- a/modules/interrogate/vqa.py +++ b/modules/interrogate/vqa.py @@ -40,6 +40,7 @@ vlm_models = { "AIDC Ovis2 1B": "AIDC-AI/Ovis2-1B", "AIDC Ovis2 2B": "AIDC-AI/Ovis2-2B", "AIDC Ovis2 4B": "AIDC-AI/Ovis2-4B", + # "OpenGVLab InternVL 2.5 1B": "OpenGVLab/InternVL2_5-1B" # "DeepSeek VL2 Tiny": "deepseek-ai/deepseek-vl2-tiny", # broken # "nVidia Eagle 2 1B": "nvidia/Eagle2-1B", # not compatible with latest transformers }