File size: 1,447 Bytes
abadc05 b88c4fd abadc05 b88c4fd abadc05 a4afcf6 abadc05 b88c4fd 54def4b abadc05 b88c4fd abadc05 de7b757 abadc05 b88c4fd e49cffc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LLM Prompt Tester For Research</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap">
<link rel="stylesheet" href="style.css">
</head>
<body>
<body>
<div class="container">
<h1>LLM Prompt Tester For Research</h1>
<label for="model">Choose Model:</label>
<select id="model">
<option value="google/gemma-3-27b-it:free">Google Gemma</option>
<option value="tngtech/deepseek-r1t2-chimera:free">DeepSeek Chat v3</option>
</select>
<label for="prompt">Enter a Prompt:</label>
<textarea id="prompt" placeholder="Type a prompt here..."></textarea>
<label for="fileUpload">Or upload prompts from a file (.txt/.csv):</label>
<label class="custom-file-upload">
<input type="file" id="fileUpload" accept=".txt,.csv"/>
Choose File
</label>
<p id="fileName" class="file-name">No file selected</p>
<button onclick="send()">Send Prompt</button>
<div id="loading" class="loading" style="display:none;"> Processing prompts... Please wait.</div>
<h3>Response:</h3>
<pre id="response"></pre>
<div class="download">
<button onclick="downloadCSV()">Download Results as CSV</button>
</div>
</div>
</body>
<script src="app.js"></script>
</html>
|