Hide image models from Together textgen select

17511c444f62d5f213cf5cd2d75f6698ba4a4c68

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

1 files changed, +1 -1Showing whitespace changes
public/scripts/textgen-models.js+1 -1
@@ -144,7 +144,7 @@ export async function loadTogetherAIModels(data) {
144 $('#model_togetherai_select').empty();144 $('#model_togetherai_select').empty();
145 for (const model of data) {145 for (const model of data) {
146 // Hey buddy, I think you've got the wrong door.146 // Hey buddy, I think you've got the wrong door.
147 if (model.display_type === 'image') {147 if (model.type === 'image') {
148 continue;148 continue;
149 }149 }
150150