File size: 976 Bytes
a6f14ec
 
 
 
 
26b6db9
 
a6f14ec
37a1881
26b6db9
7809f5a
 
1e416e3
c5dafdd
26b6db9
 
c5dafdd
26b6db9
df11f90
26b6db9
 
 
 
a6f14ec
 
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
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Text Generation using Miku Model</title>
  <link rel="stylesheet" href="/static/style.css">
</head>
<body>
  <div class="container">
    <h1>Text Generation using Miqu Model</h1>
    <p>Model: <a href="https://huggingface.co/152334H/miqu-1-70b-sf" target="_blank">152334H/miqu-1-70b-sf</a></p>
    <form id="text-gen-form" onsubmit="handleFormSubmit(event)">
      <label for="text-gen-input">Text prompt</label>
      <input type="text" id="text-gen-input" value="[INST] Eloquent high camp prose about a cute catgirl [/INST]">
      <button type="submit" id="text-gen-submit">Submit</button>
    </form>
    <div id="loader" class="hidden">
      <img src="/static/loading.gif" alt="Loading..." id="loading-image">
    </div>
    <p id="text-gen-output"></p>
  </div>
  <script src="/static/script.js"></script>
</body>
</html>