Skip to content

Commit 21e4bad

Browse files
committed
Add new base models
1 parent b51ba41 commit 21e4bad

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

src/server/common/constants.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ export const constants = {
5656
'SD 2.1 Unclip',
5757
'SDXL 0.9',
5858
'SDXL 1.0',
59+
'SD 3',
5960
'Pony',
6061
'SDXL 1.0 LCM',
6162
'SDXL Distilled',
@@ -66,9 +67,10 @@ export const constants = {
6667
'SVD XT',
6768
'Playground v2',
6869
'PixArt a',
70+
'PixArt E',
6971
'Other',
7072
],
71-
hiddenBaseModels: [] as string[],
73+
hiddenBaseModels: ['ODOR', 'SD 2.1 768', 'SD 2.1 Unclip', 'SDXL Distilled'] as string[],
7274
modelFileTypes: [
7375
'Model',
7476
'Text Encoder',
@@ -341,6 +343,7 @@ export type BaseModel = (typeof constants.baseModels)[number];
341343
export const baseModelSetTypes = [
342344
'SD1',
343345
'SD2',
346+
'SD3',
344347
'SDXL',
345348
'SDXLDistilled',
346349
'SCascade',
@@ -351,6 +354,7 @@ export type BaseModelSetType = (typeof baseModelSetTypes)[number];
351354
export const baseModelSets: Record<BaseModelSetType, BaseModel[]> = {
352355
SD1: ['SD 1.4', 'SD 1.5', 'SD 1.5 LCM'],
353356
SD2: ['SD 2.0', 'SD 2.0 768', 'SD 2.1', 'SD 2.1 768', 'SD 2.1 Unclip'],
357+
SD3: ['SD 3'],
354358
SDXL: ['SDXL 0.9', 'SDXL 1.0', 'SDXL 1.0 LCM', 'SDXL Lightning'],
355359
SDXLDistilled: ['SDXL Distilled'],
356360
SCascade: ['Stable Cascade'],
@@ -413,6 +417,7 @@ export const baseModelLicenses: Record<BaseModel, LicenseDetails | undefined> =
413417
'SD 2.1': baseLicenses['openrail'],
414418
'SD 2.1 768': baseLicenses['openrail'],
415419
'SD 2.1 Unclip': baseLicenses['openrail'],
420+
'SD 3': baseLicenses['SAI NCRC'],
416421
'SDXL 0.9': baseLicenses['sdxl 0.9'],
417422
'SDXL 1.0': baseLicenses['openrail++'],
418423
'SDXL 1.0 LCM': baseLicenses['openrail++'],
@@ -423,6 +428,7 @@ export const baseModelLicenses: Record<BaseModel, LicenseDetails | undefined> =
423428
'SVD XT': baseLicenses['svd'],
424429
'Playground v2': baseLicenses['playground v2'],
425430
'PixArt a': baseLicenses['agpl'],
431+
'PixArt E': baseLicenses['agpl'],
426432
'Stable Cascade': baseLicenses['SAI NCRC'],
427433
Pony: baseLicenses['openrail++'],
428434
ODOR: undefined,

src/server/services/generation/generation.service.ts

+1
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,7 @@ const samplersToSchedulers: Record<Sampler, string> = {
404404
const baseModelToOrchestration: Record<BaseModelSetType, string | undefined> = {
405405
SD1: 'SD_1_5',
406406
SD2: undefined,
407+
SD3: 'SD_3',
407408
SDXL: 'SDXL',
408409
SDXLDistilled: 'SDXL_Distilled',
409410
SCascade: 'SCascade',

0 commit comments

Comments
 (0)