Hide image models from Together textgen select
| @@ -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 | } |
| 150 | 150 | ||