mgokg commited on
Commit
ceeca2d
·
verified ·
1 Parent(s): 59bc002

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +28 -51
index.html CHANGED
@@ -1,62 +1,39 @@
1
  <!DOCTYPE html>
2
- <html>
3
  <head>
4
- <title>Gradio App</title>
5
- <script src="https://cdn.jsdelivr.net/npm/@gradio/client/dist/index.min.js"></script>
6
- <style>
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
- <div id="app"></div>
 
 
 
 
 
 
24
  <script>
25
- const app = new gradio.App({ cors: true });
 
 
 
 
 
 
 
26
 
27
- function transcribeAudio(audio) {
28
- return new Promise((resolve, reject) => {
29
- const reader = new FileReader();
30
- reader.readAsDataURL(audio);
31
- reader.onloadend = () => {
32
- const base64data = reader.result.split(',')[1]; // Encode audio to base64
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
- app.launch(() => {
48
- return [
49
- gradio.Audio({ label: "Spracheingabe" }),
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>