| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Ares ONNX Interface</title> | |
| <link rel="stylesheet" href="style.css"> | |
| <!-- Import ONNX Runtime Web --> | |
| <script src="https://cdn.jsdelivr.net/npm/onnxruntime-web/dist/ort.min.js"></script> | |
| </head> | |
| <body> | |
| <div class="app-container"> | |
| <header class="header"> | |
| <div class="logo"> | |
| <div class="logo-circle"></div> | |
| <h1>Ares</h1> | |
| </div> | |
| <div class="status"> | |
| <span class="status-dot"></span> Serverless ONNX Engine | |
| </div> | |
| </header> | |
| <main class="chat-container" id="chat-container"> | |
| <div class="message system-message" id="loading-msg"> | |
| <p>Loading PyTorch AI weights directly into your browser's VRAM... Please wait.</p> | |
| </div> | |
| </main> | |
| <div class="input-area"> | |
| <input type="text" id="user-input" placeholder="Message Ares..." disabled> | |
| <button id="send-btn" disabled> | |
| <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | |
| <path d="M22 2L11 13" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |
| <path d="M22 2L15 22L11 13L2 9L22 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |
| </svg> | |
| </button> | |
| </div> | |
| </div> | |
| <script src="app.js"></script> | |
| </body> | |
| </html> | |