mgokg commited on
Commit
419dc63
·
verified ·
1 Parent(s): 365769f

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +77 -17
index.html CHANGED
@@ -1,19 +1,79 @@
1
- <!doctype html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+