|
<!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> |
|
|