studycode129 commited on
Commit
1f75806
·
verified ·
1 Parent(s): e49cffc

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +12 -9
index.html CHANGED
@@ -3,17 +3,20 @@
3
  <head>
4
  <meta charset="utf-8" />
5
  <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
  <link rel="stylesheet" href="style.css" />
8
  </head>
9
  <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
 
 
 
18
  </body>
19
  </html>
 
3
  <head>
4
  <meta charset="utf-8" />
5
  <meta name="viewport" content="width=device-width" />
6
+ <title>LLM TESTING</title>
7
  <link rel="stylesheet" href="style.css" />
8
  </head>
9
  <body>
10
+ <h1>Welcome to your researcher friendly LLM workspace!</h1>
11
+ <input id="apiKey" placeholder="OpenRouter API Key" style="width:100%;"/>
12
+ <select id="model">
13
+ <option value="meta-llama/llama-3-8b-instruct">LLaMA-3-8B</option>
14
+ <option value="openchat/openchat-3.5">GPT‑like 3.5</option>
15
+ <option value="deepseek-ai/deepseek-coder:7b-instruct">DeepSeek Coder</option>
16
+ </select>
17
+ <textarea id="prompt" placeholder="Type your prompt…" style="width:100%;height:150px;"></textarea>
18
+ <button onclick="send()">Send</button>
19
+ <pre id="response" style="background:#f0f0f0;padding:10px;"></pre>
20
+ <script src="app.js"></script>
21
  </body>
22
  </html>