just / index.html
krishna195's picture
Update index.html
7d66de5 verified
raw
history blame
705 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Speech-to-Text Debug</title>
<script src="https://cdn.jsdelivr.net/npm/@xenova/transformers"></script>
<script defer src="script.js"></script>
</head>
<body>
<h1>Speech-to-Text (Debug Mode)</h1>
<p id="modelStatus">⏳ Loading model...</p>
<button id="testModel" disabled>Test Model</button>
<button id="recordButton" disabled>πŸ”„ Model Loading...</button>
<p id="status">Waiting for model...</p>
<p><strong>Transcription:</strong></p>
<p id="output"></p>
<p id="error" style="color: red;"></p>
</body>
</html>