Empereur / static /index.html
Empereur-Pirate's picture
Update static/index.html
df11f90 verified
raw
history blame contribute delete
976 Bytes
<!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>