diff --git a/public/scripts/textgen-models.js b/public/scripts/textgen-models.js index fd70ffa6f..eb91aefef 100644 --- a/public/scripts/textgen-models.js +++ b/public/scripts/textgen-models.js @@ -23,61 +23,67 @@ export let openRouterModels = []; * @type {string[]} */ const OPENROUTER_PROVIDERS = [ - 'OpenAI', - 'Anthropic', - 'Google', - 'Google AI Studio', - 'Amazon Bedrock', - 'Groq', - 'SambaNova', - 'Cohere', - 'Mistral', - 'Together', - 'Together 2', - 'Fireworks', - 'DeepInfra', - 'Lepton', - 'Novita', - 'Avian', - 'Lambda', - 'Azure', - 'Modal', - 'AnyScale', - 'Replicate', - 'Perplexity', - 'Recursal', - 'OctoAI', - 'DeepSeek', - 'Infermatic', - 'AI21', - 'Featherless', - 'Inflection', - 'xAI', - 'Cloudflare', - 'SF Compute', - 'Minimax', - 'Nineteen', - 'Liquid', - 'InferenceNet', - 'Friendli', - 'AionLabs', - 'Alibaba', - 'Nebius', - 'Chutes', - 'Kluster', - 'Crusoe', - 'Targon', - 'Ubicloud', - 'Parasail', - '01.AI', - 'HuggingFace', - 'Mancer', - 'Mancer 2', - 'Hyperbolic', - 'Hyperbolic 2', - 'Lynn 2', - 'Lynn', - 'Reflection', + + "OpenAI", + "Anthropic", + "Google", + "Google AI Studio", + "Amazon Bedrock", + "Groq", + "SambaNova", + "Cohere", + "Mistral", + "Together", + "Together 2", + "Fireworks", + "DeepInfra", + "Lepton", + "Novita", + "Avian", + "Lambda", + "Azure", + "Modal", + "AnyScale", + "Replicate", + "Perplexity", + "Recursal", + "OctoAI", + "DeepSeek", + "Infermatic", + "AI21", + "Featherless", + "Inflection", + "xAI", + "Cloudflare", + "SF Compute", + "Minimax", + "Nineteen", + "Liquid", + "Stealth", + "NCompass", + "InferenceNet", + "Friendli", + "AionLabs", + "Alibaba", + "Nebius", + "Chutes", + "Kluster", + "Crusoe", + "Targon", + "Ubicloud", + "Parasail", + "Phala", + "Cent-ML", + "Venice", + "01.AI", + "HuggingFace", + "Mancer", + "Mancer 2", + "Hyperbolic", + "Hyperbolic 2", + "Lynn 2", + "Lynn", + "Reflection" ]; export async function loadOllamaModels(data) { diff --git a/src/endpoints/stable-diffusion.js b/src/endpoints/stable-diffusion.js index ee3944cb4..664c59399 100644 --- a/src/endpoints/stable-diffusion.js +++ b/src/endpoints/stable-diffusion.js @@ -1166,7 +1166,8 @@ falai.post('/models', async (_request, response) => { const models = data .filter(x => !x.title.toLowerCase().includes('inpainting') && !x.title.toLowerCase().includes('control') && - !x.title.toLowerCase().includes('upscale')) + !x.title.toLowerCase().includes('upscale') && + !x.title.toLowerCase().includes('lora')) .sort((a, b) => a.title.localeCompare(b.title)) .map(x => ({ value: x.modelUrl.split('fal-ai/')[1], text: x.title })); return response.send(models);