ThomasNC17's picture
Create static/script.js
c36a615 verified
Raw
History Blame Contribute Delete
381 Bytes
async function reformuler() {
const texte = document.getElementById("input").value;
const response = await fetch("/reformuler", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ texte })
});
const data = await response.json();
document.getElementById("output").innerText = data.reformulation;
}