update changelog

Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2025-02-03 09:23:33 -05:00
parent 7831ee10db
commit ce92a0b4f0
2 changed files with 16 additions and 2 deletions
+14
View File
@@ -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 <https://github.com/vladmandic/automatic> to <https://github.com/vladmandic/sdnext>
old repo url should automatically redirect to new one for seamless transition and in-place upgrades
+2 -2
View File
@@ -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