Hide image models from Together textgen select

This commit is contained in:
Cohee
2025-06-25 21:39:24 +03:00
parent dbe0111034
commit 17511c444f
+1 -1
View File
@@ -144,7 +144,7 @@ export async function loadTogetherAIModels(data) {
$('#model_togetherai_select').empty();
for (const model of data) {
// Hey buddy, I think you've got the wrong door.
if (model.display_type === 'image') {
if (model.type === 'image') {
continue;
}