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