@@ -56,6 +56,7 @@ export const constants = {
56
56
'SD 2.1 Unclip' ,
57
57
'SDXL 0.9' ,
58
58
'SDXL 1.0' ,
59
+ 'SD 3' ,
59
60
'Pony' ,
60
61
'SDXL 1.0 LCM' ,
61
62
'SDXL Distilled' ,
@@ -66,9 +67,10 @@ export const constants = {
66
67
'SVD XT' ,
67
68
'Playground v2' ,
68
69
'PixArt a' ,
70
+ 'PixArt E' ,
69
71
'Other' ,
70
72
] ,
71
- hiddenBaseModels : [ ] as string [ ] ,
73
+ hiddenBaseModels : [ 'ODOR' , 'SD 2.1 768' , 'SD 2.1 Unclip' , 'SDXL Distilled' ] as string [ ] ,
72
74
modelFileTypes : [
73
75
'Model' ,
74
76
'Text Encoder' ,
@@ -341,6 +343,7 @@ export type BaseModel = (typeof constants.baseModels)[number];
341
343
export const baseModelSetTypes = [
342
344
'SD1' ,
343
345
'SD2' ,
346
+ 'SD3' ,
344
347
'SDXL' ,
345
348
'SDXLDistilled' ,
346
349
'SCascade' ,
@@ -351,6 +354,7 @@ export type BaseModelSetType = (typeof baseModelSetTypes)[number];
351
354
export const baseModelSets : Record < BaseModelSetType , BaseModel [ ] > = {
352
355
SD1 : [ 'SD 1.4' , 'SD 1.5' , 'SD 1.5 LCM' ] ,
353
356
SD2 : [ 'SD 2.0' , 'SD 2.0 768' , 'SD 2.1' , 'SD 2.1 768' , 'SD 2.1 Unclip' ] ,
357
+ SD3 : [ 'SD 3' ] ,
354
358
SDXL : [ 'SDXL 0.9' , 'SDXL 1.0' , 'SDXL 1.0 LCM' , 'SDXL Lightning' ] ,
355
359
SDXLDistilled : [ 'SDXL Distilled' ] ,
356
360
SCascade : [ 'Stable Cascade' ] ,
@@ -413,6 +417,7 @@ export const baseModelLicenses: Record<BaseModel, LicenseDetails | undefined> =
413
417
'SD 2.1' : baseLicenses [ 'openrail' ] ,
414
418
'SD 2.1 768' : baseLicenses [ 'openrail' ] ,
415
419
'SD 2.1 Unclip' : baseLicenses [ 'openrail' ] ,
420
+ 'SD 3' : baseLicenses [ 'SAI NCRC' ] ,
416
421
'SDXL 0.9' : baseLicenses [ 'sdxl 0.9' ] ,
417
422
'SDXL 1.0' : baseLicenses [ 'openrail++' ] ,
418
423
'SDXL 1.0 LCM' : baseLicenses [ 'openrail++' ] ,
@@ -423,6 +428,7 @@ export const baseModelLicenses: Record<BaseModel, LicenseDetails | undefined> =
423
428
'SVD XT' : baseLicenses [ 'svd' ] ,
424
429
'Playground v2' : baseLicenses [ 'playground v2' ] ,
425
430
'PixArt a' : baseLicenses [ 'agpl' ] ,
431
+ 'PixArt E' : baseLicenses [ 'agpl' ] ,
426
432
'Stable Cascade' : baseLicenses [ 'SAI NCRC' ] ,
427
433
Pony : baseLicenses [ 'openrail++' ] ,
428
434
ODOR : undefined ,
0 commit comments