jclyo1's picture
Duplicate from jclyo1/docker-sandbox
ad4fcaa
raw
history blame
1.17 kB
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) => {
const inferResponse = await fetch(`generate-picsum?prompt=${text}`);
const inferJson = await inferResponse.json();
return inferJson.output;
};
textGenForm.addEventListener('submit', async (event) => {
event.preventDefault();
const textGenInput = document.getElementById('text-gen-input');
try {
const resp = await generateImage(textGenInput.value);
document.getElementById("redirect-form").submit();
} catch (err) {
console.error(err);
}
});