Spaces:
Running
Running
File size: 1,244 Bytes
419dc63 ceeca2d 419dc63 ceeca2d 419dc63 ceeca2d 419dc63 ceeca2d 419dc63 ceeca2d 2e53701 ceeca2d 419dc63 ceeca2d 80177c2 ceeca2d 419dc63 365769f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Textfeld mit FastAPI</title>
</head>
<body>
<h1>Textfeld mit FastAPI</h1>
<form id="myForm">
<label for="prompt">Prompt:</label>
<input type="text" id="prompt" name="prompt">
<button type="button" onclick="sendData()">Senden</button>
</form>
<script>
async function sendData() {
const prompt = document.getElementById("prompt").value;
const zeitstempel = Math.floor(Date.now() / 1000); // Unix-Zeitstempel
const data = {
prompt: prompt,
zeitstempel: zeitstempel
};
const response = await fetch("https://huggingface.co/spaces/mgokg.hf.space/items/", {
method: "POST",
headers: {
"Content-Type": "application/json"
"Access-Control-Allow-Origin": "*"
},
body: JSON.stringify(data)
});
const result = await response.json();
alert(result)
console.log(result);
}
</script>
</body>
</html>
|