Spaces:
Runtime error
Runtime error
Commit
·
0c5793e
1
Parent(s):
1f030e7
English-Malayalam Translate v28
Browse files- templates/index.html +34 -0
templates/index.html
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<title>JavaScipt Open Assistant Clone</title>
|
6 |
+
<link rel="stylesheet" href="style.css">
|
7 |
+
</head>
|
8 |
+
<body>
|
9 |
+
<section class="side-bar">
|
10 |
+
<button>New Chat</button>
|
11 |
+
<div class="history"></div>
|
12 |
+
<nav>
|
13 |
+
<p>Made by a മലയാളി</p>
|
14 |
+
</nav>
|
15 |
+
</section>
|
16 |
+
<section class="main">
|
17 |
+
<h1>മലയാളം - Open Assistant</h1>
|
18 |
+
<p id="output"></p>
|
19 |
+
<div class="bottom-section">
|
20 |
+
<div class="input-container">
|
21 |
+
<input>
|
22 |
+
<div id="submit">➢</div>
|
23 |
+
</div>
|
24 |
+
</div>
|
25 |
+
<p class="info">Open Assistant - This is the 4th iteration English
|
26 |
+
supervised-fine-tuning (SFT) model of the Open-Assistant project.
|
27 |
+
</p>
|
28 |
+
</section>
|
29 |
+
<script>
|
30 |
+
var apiKey = {{ apikey.APIKEY }};
|
31 |
+
</script>
|
32 |
+
<script src="script.js"></script>
|
33 |
+
</body>
|
34 |
+
</html>
|