coolai / static /script.js
TintinMeimei's picture
Update static/script.js
ff5d679
raw
history blame
819 Bytes
const textGenForm = document.querySelector('.text-gen-form');
const translateText = async (text) => {
const settings = {
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({'input': text})
};
const inferResponse = await fetch(`infer_chatgpt`, settings);
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);
}
});