Update index.html
Browse files- index.html +12 -9
index.html
CHANGED
@@ -3,17 +3,20 @@
|
|
3 |
<head>
|
4 |
<meta charset="utf-8" />
|
5 |
<meta name="viewport" content="width=device-width" />
|
6 |
-
<title>
|
7 |
<link rel="stylesheet" href="style.css" />
|
8 |
</head>
|
9 |
<body>
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
|
|
|
|
|
|
18 |
</body>
|
19 |
</html>
|
|
|
3 |
<head>
|
4 |
<meta charset="utf-8" />
|
5 |
<meta name="viewport" content="width=device-width" />
|
6 |
+
<title>LLM TESTING</title>
|
7 |
<link rel="stylesheet" href="style.css" />
|
8 |
</head>
|
9 |
<body>
|
10 |
+
<h1>Welcome to your researcher friendly LLM workspace!</h1>
|
11 |
+
<input id="apiKey" placeholder="OpenRouter API Key" style="width:100%;"/>
|
12 |
+
<select id="model">
|
13 |
+
<option value="meta-llama/llama-3-8b-instruct">LLaMA-3-8B</option>
|
14 |
+
<option value="openchat/openchat-3.5">GPT‑like 3.5</option>
|
15 |
+
<option value="deepseek-ai/deepseek-coder:7b-instruct">DeepSeek Coder</option>
|
16 |
+
</select>
|
17 |
+
<textarea id="prompt" placeholder="Type your prompt…" style="width:100%;height:150px;"></textarea>
|
18 |
+
<button onclick="send()">Send</button>
|
19 |
+
<pre id="response" style="background:#f0f0f0;padding:10px;"></pre>
|
20 |
+
<script src="app.js"></script>
|
21 |
</body>
|
22 |
</html>
|