jbilcke-hf HF staff commited on
Commit
56f841d
·
1 Parent(s): eaa6d81
src/production/renderImageAnalysis.mts CHANGED
@@ -10,12 +10,12 @@ export async function renderImageAnalysis(
10
 
11
  try {
12
  // note: this converts a base64 PNG to a base64 JPG (which is good, actually!)
13
- response.assetUrl = await analyzeImage(response.assetUrl, request.prompt)
14
  console.log(`analysis worked on the first try!`)
15
  } catch (err) {
16
  console.error(`analysis failed the first time.. let's try again..`)
17
  try {
18
- response.assetUrl = await analyzeImage(response.assetUrl, request.prompt)
19
  console.log(`analysis worked on the second try!`)
20
  } catch (err) {
21
  console.error(`analysis failed on the second attempt.. let's keep the prompt as a fallback, then :|`)
 
10
 
11
  try {
12
  // note: this converts a base64 PNG to a base64 JPG (which is good, actually!)
13
+ response.alt = await analyzeImage(response.assetUrl, request.prompt)
14
  console.log(`analysis worked on the first try!`)
15
  } catch (err) {
16
  console.error(`analysis failed the first time.. let's try again..`)
17
  try {
18
+ response.alt = await analyzeImage(response.assetUrl, request.prompt)
19
  console.log(`analysis worked on the second try!`)
20
  } catch (err) {
21
  console.error(`analysis failed on the second attempt.. let's keep the prompt as a fallback, then :|`)