MiniCPM5-1B-WebGPU / index.html
Reza2kn's picture
Add MiniCPM5-1B browser Space scaffold
aa937f3 verified
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MiniCPM5-1B WebGPU</title>
<script type="module" src="/src/main.js"></script>
</head>
<body>
<main class="shell">
<section class="toolbar">
<div>
<h1>MiniCPM5-1B</h1>
<p>Browser deployment preview</p>
</div>
<select id="backend">
<option value="webgpu">WebGPU</option>
<option value="wasm">WASM</option>
</select>
</section>
<textarea id="prompt">Who are you? Please briefly introduce yourself.</textarea>
<section class="controls">
<label>Max tokens <input id="maxTokens" type="number" min="1" max="512" value="128" /></label>
<label>Temperature <input id="temperature" type="number" min="0" max="2" step="0.05" value="0.7" /></label>
<button id="run">Run</button>
</section>
<pre id="output">Waiting for model assets...</pre>
</main>
</body>
</html>