feat: Add SDXL Base To Linear Text To Image

This commit is contained in:
blessedcoolant
2023-07-25 15:15:57 +12:00
committed by psychedelicious
parent 3eaf8c3b2f
commit 57d833035d
5 changed files with 624 additions and 2 deletions

View File

@ -40,7 +40,7 @@ const ParamMainModelSelect = () => {
const data: SelectItem[] = [];
forEach(mainModels.entities, (model, id) => {
if (!model || ['sdxl', 'sdxl-refiner'].includes(model.base_model)) {
if (!model || ['sdxl-refiner'].includes(model.base_model)) {
return;
}