Spaces:
Running
Running
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width,initial-scale=1"> | |
| <title>Static Text Generation (Streaming)</title> | |
| <link rel="stylesheet" href="css/style.css"> | |
| </head> | |
| <body> | |
| <main> | |
| <h1>Text Generation (Streaming)</h1> | |
| <label>Prompt</label> | |
| <textarea id="prompt" rows="6" placeholder="Enter prompt...">Hello, world</textarea> | |
| <div class="controls"> | |
| <label>Max tokens: <input id="maxTokens" type="number" value="64" min="1" max="1024"></label> | |
| <label>Temperature: <input id="temp" type="number" step="0.1" value="0.7" min="0" max="2"></label> | |
| <button id="generate">Generate</button> | |
| </div> | |
| <section id="outputArea"> | |
| <h2>Output</h2> | |
| <pre id="output" class="output"></pre> | |
| </section> | |
| <section id="tokensArea"> | |
| <h2>Tokens</h2> | |
| <div id="tokens" class="tokens"></div> | |
| </section> | |
| </main> | |
| <script type="module" src="js/app.js"></script> | |
| </body> | |
| </html> | |