PyRunner / frontend /app.js
Akoda35's picture
Create frontend/app.js
05d7a6f verified
Raw
History Blame Contribute Delete
448 Bytes
async function submitRequest() {
const prompt = document.getElementById("prompt").value;
const response = await fetch("/generate", {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({ prompt })
});
const data = await response.json();
document.getElementById("results").innerHTML = `
<pre>${JSON.stringify(data, null, 2)}</pre>
`;
}