Spaces:
Sleeping
Sleeping
const textGenForm = document.querySelector('.text-gen-form'); | |
/* | |
const translateText = async (text) => { | |
const inferResponse = await fetch(`infer_t5?input=${text}`); | |
const inferJson = await inferResponse.json(); | |
return inferJson.output; | |
}; | |
textGenForm.addEventListener('submit', async (event) => { | |
event.preventDefault(); | |
const textGenInput = document.getElementById('text-gen-input'); | |
const textGenParagraph = document.querySelector('.text-gen-output'); | |
try { | |
textGenParagraph.textContent = await translateText(textGenInput.value); | |
} catch (err) { | |
console.error(err); | |
} | |
}); | |
*/ | |
const generateImage = async (text, inference_steps, model) => { | |
const inferResponse = await fetch(`generate?prompt=${text}&inference_steps=${inference_steps}&model=${model}`); | |
const inferJson = await inferResponse.json(); | |
return inferJson.response; | |
}; | |
textGenForm.addEventListener('submit', async (event) => { | |
event.preventDefault(); | |
const textGenInput = document.getElementById('text-gen-input'); | |
const inferenceSteps = document.getElementById('inference_steps'); | |
const model = document.getElementById('model'); | |
try { | |
const resp = await generateImage(textGenInput.value, inferenceSteps.value, model.value); | |
const path = "/" + resp; | |
var resultsContainer = document.getElementById('outputClass'); | |
var truepicDisplay = document.createElement('truepic-display'); | |
var truepic = document.createElement('img'); | |
truepic.src = path; | |
truepicDisplay.appendChild(truepic); | |
resultsContainer.appendChild(truepicDisplay); | |
// document.getElementById("redirect-form").submit(); | |
} catch (err) { | |
console.error(err); | |
} | |
}); |