File size: 1,049 Bytes
e49cffc
 
 
 
dda55fb
1f75806
dda55fb
e49cffc
 
 
1f75806
 
 
f645ecd
 
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, initial-scale=1.0">
		<title>LLM TESTING</title>
        <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
		<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.3-70b-instruct:free">Meta Llama 3.3 Intsruction</option>
                <option value="deepseek/deepseek-chat-v3-0324:free">DeepSeek Chat v3</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>