Spaces:
Running
Running
Update index.html
Browse files- index.html +28 -51
index.html
CHANGED
@@ -1,62 +1,39 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
-
<html>
|
3 |
<head>
|
4 |
-
<
|
5 |
-
<
|
6 |
-
<
|
7 |
-
body {
|
8 |
-
font-family: Arial, sans-serif;
|
9 |
-
display: flex;
|
10 |
-
justify-content: center;
|
11 |
-
align-items: center;
|
12 |
-
height: 100vh;
|
13 |
-
margin: 0;
|
14 |
-
background-color: #f0f0f0;
|
15 |
-
}
|
16 |
-
#app {
|
17 |
-
width: 80%;
|
18 |
-
max-width: 600px;
|
19 |
-
}
|
20 |
-
</style>
|
21 |
</head>
|
22 |
<body>
|
23 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
<script>
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
fetch('/api/transcribe', {
|
34 |
-
method: 'POST',
|
35 |
-
headers: {
|
36 |
-
'Content-Type': 'application/json'
|
37 |
-
},
|
38 |
-
body: JSON.stringify({ audio: base64data })
|
39 |
-
})
|
40 |
-
.then(response => response.json())
|
41 |
-
.then(data => resolve(data.transcription))
|
42 |
-
.catch(error => reject('Error transcribing audio: ' + error));
|
43 |
-
};
|
44 |
});
|
45 |
-
}
|
46 |
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
gradio.Textbox({ label: "Textausgabe" })
|
51 |
-
];
|
52 |
-
}, {
|
53 |
-
fn: transcribeAudio,
|
54 |
-
inputs: "audio",
|
55 |
-
outputs: "textbox",
|
56 |
-
title: "Sprachtranskription",
|
57 |
-
description: "Lade eine Audioaufnahme hoch oder spreche direkten Text ein."
|
58 |
-
});
|
59 |
</script>
|
60 |
</body>
|
61 |
</html>
|
62 |
-
|
|
|
1 |
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Textfeld mit FastAPI</title>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
</head>
|
8 |
<body>
|
9 |
+
<h1>Textfeld mit FastAPI</h1>
|
10 |
+
<form id="myForm">
|
11 |
+
<label for="prompt">Prompt:</label>
|
12 |
+
<input type="text" id="prompt" name="prompt">
|
13 |
+
<button type="button" onclick="sendData()">Senden</button>
|
14 |
+
</form>
|
15 |
+
|
16 |
<script>
|
17 |
+
async function sendData() {
|
18 |
+
const prompt = document.getElementById("prompt").value;
|
19 |
+
const zeitstempel = Math.floor(Date.now() / 1000); // Unix-Zeitstempel
|
20 |
+
|
21 |
+
const data = {
|
22 |
+
prompt: prompt,
|
23 |
+
zeitstempel: zeitstempel
|
24 |
+
};
|
25 |
|
26 |
+
const response = await fetch("https://huggingface.co/spaces/mgokg.hf.space/items/", {
|
27 |
+
method: "POST",
|
28 |
+
headers: {
|
29 |
+
"Content-Type": "application/json"
|
30 |
+
},
|
31 |
+
body: JSON.stringify(data)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
});
|
|
|
33 |
|
34 |
+
const result = await response.json();
|
35 |
+
console.log(result);
|
36 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
</script>
|
38 |
</body>
|
39 |
</html>
|
|