Spaces:
Running
Running
Update index.html
Browse files- index.html +77 -17
index.html
CHANGED
@@ -1,19 +1,79 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
</html>
|
|
|
|
1 |
+
|
2 |
+
Qwen2.5-Coder-32B with Hyperbolic API
|
3 |
+
erstelle eine gradio app mit einer cors komponente, spracheingabe und textausgabe. transkripiere die sprachufnahme zu text und geb ihn aus
|
4 |
+
examples
|
5 |
+
Qwen,Start!
|
6 |
+
Help me design an interface with a purple button that says 'Qwen, Start!'. When the button is clicked, display a countdown from 5 in a very large font for 5 seconds.
|
7 |
+
Spam with emojis!
|
8 |
+
Write code in a single HTML file: Capture the click event, place a random number of emojis at the click position, and add gravity and collision effects to each emoji.
|
9 |
+
TODO list
|
10 |
+
I want a TODO list that allows me to add tasks, delete tasks, and I would like the overall color theme to be purple.
|
11 |
+
setting
|
12 |
+
·
|
13 |
+
Mit Gradio erstellt logo
|
14 |
+
code
|
15 |
+
|
16 |
+
html
|
17 |
+
|
18 |
+
<!DOCTYPE html>
|
19 |
<html>
|
20 |
+
<head>
|
21 |
+
<title>Gradio App</title>
|
22 |
+
<script src="https://cdn.jsdelivr.net/npm/@gradio/[email protected]/dist/gradio.min.js"></script>
|
23 |
+
<style>
|
24 |
+
body {
|
25 |
+
font-family: Arial, sans-serif;
|
26 |
+
display: flex;
|
27 |
+
justify-content: center;
|
28 |
+
align-items: center;
|
29 |
+
height: 100vh;
|
30 |
+
margin: 0;
|
31 |
+
background-color: #f0f0f0;
|
32 |
+
}
|
33 |
+
#app {
|
34 |
+
width: 80%;
|
35 |
+
max-width: 600px;
|
36 |
+
}
|
37 |
+
</style>
|
38 |
+
</head>
|
39 |
+
<body>
|
40 |
+
<div id="app"></div>
|
41 |
+
<script>
|
42 |
+
const app = new gradio.App({ cors: true });
|
43 |
+
|
44 |
+
function transcribeAudio(audio) {
|
45 |
+
return new Promise((resolve, reject) => {
|
46 |
+
const reader = new FileReader();
|
47 |
+
reader.readAsDataURL(audio);
|
48 |
+
reader.onloadend = () => {
|
49 |
+
const base64data = reader.result.split(',')[1]; // Encode audio to base64
|
50 |
+
fetch('/api/transcribe', {
|
51 |
+
method: 'POST',
|
52 |
+
headers: {
|
53 |
+
'Content-Type': 'application/json'
|
54 |
+
},
|
55 |
+
body: JSON.stringify({ audio: base64data })
|
56 |
+
})
|
57 |
+
.then(response => response.json())
|
58 |
+
.then(data => resolve(data.transcription))
|
59 |
+
.catch(error => reject('Error transcribing audio: ' + error));
|
60 |
+
};
|
61 |
+
});
|
62 |
+
}
|
63 |
+
|
64 |
+
app.launch(() => {
|
65 |
+
return [
|
66 |
+
gradio.Audio({ label: "Spracheingabe" }),
|
67 |
+
gradio.Textbox({ label: "Textausgabe" })
|
68 |
+
];
|
69 |
+
}, {
|
70 |
+
fn: transcribeAudio,
|
71 |
+
inputs: "audio",
|
72 |
+
outputs: "textbox",
|
73 |
+
title: "Sprachtranskription",
|
74 |
+
description: "Lade eine Audioaufnahme hoch oder spreche direkten Text ein."
|
75 |
+
});
|
76 |
+
</script>
|
77 |
+
</body>
|
78 |
</html>
|
79 |
+
|