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