| 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> | |
| `; | |
| } |