partial implementation of SDXL model loader

This commit is contained in:
Lincoln Stein
2023-07-10 20:18:30 -04:00
parent d8ebbd258a
commit 8e42502dfd
3 changed files with 111 additions and 4 deletions

View File

@@ -13,6 +13,8 @@ import { useGetMainModelsQuery } from 'services/api/endpoints/models';
export const MODEL_TYPE_MAP = {
'sd-1': 'Stable Diffusion 1.x',
'sd-2': 'Stable Diffusion 2.x',
sdxl: 'Stable Diffusion XL',
'sdxl-refiner': 'Stable Diffusion XL Refiner',
};
const ModelSelect = () => {