Spaces:
Build error
Build error
File size: 11,126 Bytes
51abf18 8508029 481c61f be28f93 481c61f 51abf18 481c61f 12d9feb 481c61f 12d9feb 481c61f 12d9feb 2f5b71b 12d9feb 481c61f 12d9feb 481c61f 12d9feb 481c61f 12d9feb 481c61f 2f5b71b 481c61f 2f5b71b 481c61f 12d9feb 481c61f 12d9feb 481c61f 12d9feb 2f40444 481c61f 12d9feb 481c61f 12d9feb 481c61f 2f5b71b 12d9feb 481c61f 2f5b71b 12d9feb 481c61f 51abf18 be28f93 481c61f 2f5b71b 481c61f 12d9feb 481c61f 2f40444 481c61f 2f40444 481c61f 12d9feb 481c61f 12d9feb 2f40444 481c61f 2f40444 12d9feb 481c61f 8508029 be28f93 51abf18 be28f93 481c61f 2f5b71b 481c61f 2f5b71b be28f93 51abf18 be28f93 51abf18 2f40444 51abf18 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 | export default async function handler(req, res) {
if (req.method !== 'POST') {
return res.status(405).json({ error: 'MΓ©todo no permitido' });
}
try {
const { prompt, model = 'black-forest-labs/FLUX.1-schnell', negative_prompt = '' } = req.body;
if (!prompt) {
return res.status(400).json({ error: 'El prompt es requerido.' });
}
const hfToken = process.env.HF_TOKEN;
const togetherKey = process.env.TOGETHER_API_KEY;
let dataUrl = null;
let modelUsed = model;
const errors = [];
// βββ 1. Together AI (directo) ββββββββββββββββββββββββββββββββββββββββββ
// Proveedor primario: FLUX.1-schnell-Free es 100% gratis en Together AI.
// Registrarse en: https://api.together.ai/signup (sin tarjeta de crΓ©dito)
// Agregar TOGETHER_API_KEY en Vercel Settings β Environment Variables
if (togetherKey) {
try {
console.log('[Together] Intentando FLUX.1-schnell-Free...');
const togetherRes = await fetch('https://api.together.xyz/v1/images/generations', {
method: 'POST',
headers: {
'Authorization': `Bearer ${togetherKey}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'black-forest-labs/FLUX.1-schnell-Free',
prompt: prompt,
width: 1024,
height: 1024,
steps: 4,
n: 1,
response_format: 'b64_json'
}),
signal: AbortSignal.timeout(52000)
});
if (togetherRes.ok) {
const json = await togetherRes.json();
const b64 = json?.data?.[0]?.b64_json;
if (b64) {
dataUrl = `data:image/jpeg;base64,${b64}`;
modelUsed = 'FLUX.1 Schnell (Together AI)';
console.log('[Together] β Γxito');
} else {
const msg = 'Sin b64_json en respuesta: ' + JSON.stringify(json).slice(0, 200);
errors.push('[Together] ' + msg);
console.warn('[Together]', msg);
}
} else {
const errText = await togetherRes.text().catch(() => '');
const msg = `Status ${togetherRes.status}: ${errText.slice(0, 200)}`;
errors.push('[Together] ' + msg);
console.warn('[Together] β', msg);
}
} catch (e) {
errors.push('[Together Error] ' + e.message);
console.warn('[Together Error]', e.message);
}
} else {
const msg = 'TOGETHER_API_KEY no configurado. Registrarse gratis en https://api.together.ai/signup';
errors.push('[Together] ' + msg);
console.warn('[Together]', msg);
}
// βββ 2. Fal.ai vΓa HF Router ββββββββββββββββββββββββββββββββββββββββββ
// router.huggingface.co resuelve DNS correctamente desde Vercel (confirmado).
if (!dataUrl && hfToken) {
try {
console.log('[Fal/HF] Intentando fal-ai/flux/schnell...');
const falRes = await fetch('https://router.huggingface.co/fal-ai/fal-ai/flux/schnell', {
method: 'POST',
headers: {
'Authorization': `Bearer ${hfToken}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
prompt: prompt,
image_size: 'square_hd',
num_inference_steps: 4,
num_images: 1,
enable_safety_checker: false
}),
signal: AbortSignal.timeout(52000)
});
if (falRes.ok) {
const json = await falRes.json();
const imgUrl = json?.images?.[0]?.url;
if (imgUrl) {
// Fal retorna URL, hay que descargar la imagen
const imgRes = await fetch(imgUrl, { signal: AbortSignal.timeout(20000) });
if (imgRes.ok) {
const ct = imgRes.headers.get('content-type') || 'image/jpeg';
const buf = await imgRes.arrayBuffer();
dataUrl = `data:${ct};base64,${Buffer.from(buf).toString('base64')}`;
modelUsed = 'FLUX.1 Schnell (Fal.ai via HF)';
console.log('[Fal/HF] β Γxito');
}
} else if (json?.images?.[0]?.content) {
// Fal alternativo: retorna base64 directo
dataUrl = `data:image/jpeg;base64,${json.images[0].content}`;
modelUsed = 'FLUX.1 Schnell (Fal.ai via HF)';
console.log('[Fal/HF] β Γxito (b64)');
} else {
const msg = 'Sin imagen en respuesta: ' + JSON.stringify(json).slice(0, 200);
errors.push('[Fal/HF] ' + msg);
console.warn('[Fal/HF]', msg);
}
} else {
const errText = await falRes.text().catch(() => '');
const msg = `Status ${falRes.status}: ${errText.slice(0, 200)}`;
errors.push('[Fal/HF] ' + msg);
console.warn('[Fal/HF] β', msg);
}
} catch (e) {
errors.push('[Fal/HF Error] ' + e.message);
console.warn('[Fal/HF Error]', e.message);
}
}
// βββ 3. Novita AI vΓa HF Router βββββββββββββββββββββββββββββββββββββββ
if (!dataUrl && hfToken) {
try {
console.log('[Novita/HF] Intentando FLUX.1-schnell...');
const novitaRes = await fetch('https://router.huggingface.co/novita/v1/images/generations', {
method: 'POST',
headers: {
'Authorization': `Bearer ${hfToken}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'black-forest-labs/FLUX.1-schnell',
prompt: prompt,
width: 1024,
height: 1024,
steps: 4,
n: 1,
response_format: 'b64_json'
}),
signal: AbortSignal.timeout(52000)
});
if (novitaRes.ok) {
const json = await novitaRes.json();
const b64 = json?.data?.[0]?.b64_json;
if (b64) {
dataUrl = `data:image/jpeg;base64,${b64}`;
modelUsed = 'FLUX.1 Schnell (Novita via HF)';
console.log('[Novita/HF] β Γxito');
} else {
const msg = 'Sin b64_json: ' + JSON.stringify(json).slice(0, 200);
errors.push('[Novita/HF] ' + msg);
console.warn('[Novita/HF]', msg);
}
} else {
const errText = await novitaRes.text().catch(() => '');
const msg = `Status ${novitaRes.status}: ${errText.slice(0, 200)}`;
errors.push('[Novita/HF] ' + msg);
console.warn('[Novita/HF] β', msg);
}
} catch (e) {
errors.push('[Novita/HF Error] ' + e.message);
console.warn('[Novita/HF Error]', e.message);
}
}
// βββ 4. Pollinations AI (fallback gratuito) ββββββββββββββββββββββββββββ
if (!dataUrl) {
const pollModels = ['turbo', 'flux-schnell'];
for (const pollModel of pollModels) {
try {
console.log(`[Pollinations] Intentando model=${pollModel}...`);
const seed = Math.floor(Math.random() * 100000);
const encodedPrompt = encodeURIComponent(prompt);
const pollUrl = `https://image.pollinations.ai/prompt/${encodedPrompt}?width=512&height=512&model=${pollModel}&nologo=true&seed=${seed}`;
const pollRes = await fetch(pollUrl, {
signal: AbortSignal.timeout(45000),
redirect: 'follow'
});
if (pollRes.ok) {
const ct = pollRes.headers.get('content-type') || '';
if (ct.startsWith('image/')) {
const buf = await pollRes.arrayBuffer();
dataUrl = `data:${ct};base64,${Buffer.from(buf).toString('base64')}`;
modelUsed = `FLUX (Pollinations/${pollModel})`;
console.log(`[Pollinations] β Γxito con ${pollModel}`);
break;
}
} else {
const msg = `model=${pollModel} -> Status ${pollRes.status}`;
errors.push('[Pollinations] ' + msg);
console.warn('[Pollinations] β', msg);
}
} catch (e) {
errors.push(`[Pollinations Error/${pollModel}] ` + e.message);
console.warn(`[Pollinations Error/${pollModel}]`, e.message);
}
}
}
if (!dataUrl) {
console.error('[2D] Todos los proveedores fallaron:', errors);
const noTogether = !togetherKey
? ' | SOLUCIΓN: Agregar TOGETHER_API_KEY en Vercel (gratis en together.ai)'
: '';
return res.status(500).json({
error: `No se pudo generar la imagen.${noTogether}`,
debug: errors
});
}
return res.status(200).json({
success: true,
image: dataUrl,
imageUrl: dataUrl,
model_used: modelUsed
});
} catch (err) {
console.error('[Vercel Serverless 2D Error]', err);
return res.status(500).json({ error: err.message || 'Error interno.' });
}
}
|