Spaces:
Running
Running
Update index.html
Browse files- index.html +4 -5
index.html
CHANGED
@@ -55,8 +55,8 @@
|
|
55 |
<div id="container">
|
56 |
<h1>Whisper WAV Transcription</h1>
|
57 |
|
58 |
-
<input type="
|
59 |
-
<input type="
|
60 |
|
61 |
<label for="audioFile">Select WAV File:</label>
|
62 |
<input type="file" id="audioFile" accept=".wav">
|
@@ -85,9 +85,8 @@
|
|
85 |
}
|
86 |
|
87 |
async function transcribeAudio() {
|
88 |
-
const
|
89 |
-
const
|
90 |
-
const apiBaseUrl = params.apiBaseUrl || '';
|
91 |
|
92 |
const audioFile = document.getElementById('audioFile').files[0];
|
93 |
const transcriptionDiv = document.getElementById('transcription');
|
|
|
55 |
<div id="container">
|
56 |
<h1>Whisper WAV Transcription</h1>
|
57 |
|
58 |
+
<input type="text" id="apiKey"> <!-- Hidden input for API key -->
|
59 |
+
<input type="text" id="apiBaseUrl"> <!-- Hidden input for API base URL -->
|
60 |
|
61 |
<label for="audioFile">Select WAV File:</label>
|
62 |
<input type="file" id="audioFile" accept=".wav">
|
|
|
85 |
}
|
86 |
|
87 |
async function transcribeAudio() {
|
88 |
+
const apiKey = document.getElementByID('apiKey').value;
|
89 |
+
const apiBaseUrl = document.getElementByID('apiBaseUrl').value;
|
|
|
90 |
|
91 |
const audioFile = document.getElementById('audioFile').files[0];
|
92 |
const transcriptionDiv = document.getElementById('transcription');
|