Merge pull request #3837 from Dakraid/chore/update-fal-filter-openrouter-providers Update FAL.AI model filter and OpenRouter Providers
Signed| @@ -58,6 +58,8 @@ const OPENROUTER_PROVIDERS = [ | ||
| 58 | 58 | 'Minimax', |
| 59 | 59 | 'Nineteen', |
| 60 | 60 | 'Liquid', |
| 61 | + 'Stealth', | |
| 62 | + 'NCompass', | |
| 61 | 63 | 'InferenceNet', |
| 62 | 64 | 'Friendli', |
| 63 | 65 | 'AionLabs', |
| @@ -69,6 +71,9 @@ const OPENROUTER_PROVIDERS = [ | ||
| 69 | 71 | 'Targon', |
| 70 | 72 | 'Ubicloud', |
| 71 | 73 | 'Parasail', |
| 74 | + 'Phala', | |
| 75 | + 'Cent-ML', | |
| 76 | + 'Venice', | |
| 72 | 77 | '01.AI', |
| 73 | 78 | 'HuggingFace', |
| 74 | 79 | 'Mancer', |
| @@ -1166,7 +1166,8 @@ falai.post('/models', async (_request, response) => { | ||
| 1166 | 1166 | const models = data |
| 1167 | 1167 | .filter(x => !x.title.toLowerCase().includes('inpainting') && |
| 1168 | 1168 | !x.title.toLowerCase().includes('control') && |
| 1169 | 1169 | !x.title.toLowerCase().includes('upscale')) && |
| 1170 | + !x.title.toLowerCase().includes('lora')) | |
| 1170 | 1171 | .sort((a, b) => a.title.localeCompare(b.title)) |
| 1171 | 1172 | .map(x => ({ value: x.modelUrl.split('fal-ai/')[1], text: x.title })); |
| 1172 | 1173 | return response.send(models); |