mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
189c430e46
Lots of changed bc the line length is now 120. May as well do it now.
11 lines
422 B
TypeScript
11 lines
422 B
TypeScript
import type { BaseModelType } from './types';
|
|
|
|
export const ALL_BASE_MODELS: BaseModelType[] = ['sd-1', 'sd-2', 'sdxl', 'sdxl-refiner'];
|
|
|
|
export const NON_REFINER_BASE_MODELS: BaseModelType[] = ['sd-1', 'sd-2', 'sdxl'];
|
|
|
|
export const SDXL_MAIN_MODELS: BaseModelType[] = ['sdxl'];
|
|
export const NON_SDXL_MAIN_MODELS: BaseModelType[] = ['sd-1', 'sd-2'];
|
|
|
|
export const REFINER_BASE_MODELS: BaseModelType[] = ['sdxl-refiner'];
|