add longcat image and image-edit

Signed-off-by: vladmandic <mandic00@live.com>
This commit is contained in:
vladmandic
2025-12-16 08:58:22 +01:00
parent 2ac0a67bd9
commit 409ad8d2bd
12 changed files with 78 additions and 6 deletions
+2
View File
@@ -139,6 +139,8 @@ def guess_by_name(fn, current_guess):
new_guess = 'NanoBanana'
elif 'z-image' in fn.lower() or 'z_image' in fn.lower():
new_guess = 'Z-Image'
elif 'longcat-image' in fn.lower():
new_guess = 'LongCat'
if debug_load:
shared.log.trace(f'Autodetect: method=name file="{fn}" previous="{current_guess}" current="{new_guess}"')
return new_guess or current_guess