Fix Together image models listing

173207ec540b99ce1689cbd2777de393ed4c9dc7

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +2 -2Ignore whitespace
src/endpoints/stable-diffusion.js+2 -2
@@ -627,8 +627,8 @@ together.post('/models', async (request, response) => {
627627 }
628628
629629 const models = data
630630 .filter(x => x.display_typetype === 'image')
631631 .map(x => ({ value: x.nameid, text: x.display_name }));
632632
633633 return response.send(models);
634634 } catch (error) {