2023-12-28 13:03:21 +00:00
|
|
|
import type { BaseModelType } from './types';
|
2023-07-26 01:04:02 +00:00
|
|
|
|
2024-01-27 09:55:55 +00:00
|
|
|
export const ALL_BASE_MODELS: BaseModelType[] = ['sd-1', 'sd-2', 'sdxl', 'sdxl-refiner'];
|
2023-07-26 01:04:02 +00:00
|
|
|
|
2024-01-27 09:55:55 +00:00
|
|
|
export const NON_REFINER_BASE_MODELS: BaseModelType[] = ['sd-1', 'sd-2', 'sdxl'];
|
2023-07-26 01:04:02 +00:00
|
|
|
|
2023-08-14 03:23:09 +00:00
|
|
|
export const SDXL_MAIN_MODELS: BaseModelType[] = ['sdxl'];
|
|
|
|
export const NON_SDXL_MAIN_MODELS: BaseModelType[] = ['sd-1', 'sd-2'];
|
|
|
|
|
2023-07-26 01:04:02 +00:00
|
|
|
export const REFINER_BASE_MODELS: BaseModelType[] = ['sdxl-refiner'];
|