Spaces:
Running
Running
File size: 1,094 Bytes
898103f 4669b8e bfd4bb5 3c2c150 4669b8e ccc3ecf 3c2c150 c0706c7 3c2c150 ccc3ecf 3c2c150 4669b8e 898103f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chat with Labsoft AI</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
</head>
<body>
<a href="https://www.labsoft.ai" target="_blank" id="logo-link">
<img src="Logo.png" alt="Logo" id="logo-img" />
</a>
<div class="container">
<h1>Chat with Labsoft AI Assistant</h1>
<input
type="text"
id="questionInput"
placeholder="Ask a question..."
onkeypress="handleKeyPress(event)" />
<button onclick="sendQuestion()">
<span class="button-content">Send</span>
</button>
<br /><br />
<audio id="audioResponse" controls></audio>
<div class="powered-by">
Powered by
<a href="https://www.labsoft.ai" target="_blank" class="labsoft-link">
labsoft.ai
<img src="Logo.png" alt="Logo" class="logo-img-pb" />
</a>
</div>
</div>
</body>
</html>
|