Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Moondream2 Visual Assistant</title> | |
| <link rel="stylesheet" href="style.css"> | |
| <meta name="description" content="AI-powered image description using Moondream2 and Transformers.js"> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <header> | |
| <h1>Moondream2 Visual Assistant</h1> | |
| <p>Upload an image and ask questions about it using AI</p> | |
| </header> | |
| <main> | |
| <div class="upload-section"> | |
| <div class="upload-area" id="uploadArea"> | |
| <div class="upload-content"> | |
| <svg class="upload-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor"> | |
| <path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path> | |
| <polyline points="7 10 12 15 17 10"></polyline> | |
| <line x1="12" y1="15" x2="12" y2="3"></line> | |
| </svg> | |
| <p>Drop an image here or <span>browse</span></p> | |
| <input type="file" id="fileInput" accept="image/*" hidden> | |
| </div> | |
| </div> | |
| <div class="image-preview" id="imagePreview" style="display: none;"> | |
| <img id="previewImage" alt="Preview"> | |
| <button class="remove-btn" id="removeBtn">×</button> | |
| </div> | |
| </div> | |
| <div class="query-section" id="querySection" style="display: none;"> | |
| <div class="input-group"> | |
| <input type="text" id="questionInput" placeholder="Ask a question about the image..." maxlength="200"> | |
| <button id="askBtn" disabled>Ask</button> | |
| </div> | |
| </div> | |
| <div class="response-section" id="responseSection" style="display: none;"> | |
| <h2>Response</h2> | |
| <div class="response-content"> | |
| <div class="loading" id="loading" style="display: none;"> | |
| <div class="spinner"></div> | |
| <p>Analyzing image...</p> | |
| </div> | |
| <div class="response-text" id="responseText"></div> | |
| </div> | |
| </div> | |
| </main> | |
| <footer> | |
| <p>Powered by <a href="https://huggingface.co/Xenova/moondream2" target="_blank">Moondream2</a> and Transformers.js</p> | |
| </footer> | |
| </div> | |
| <script type="module" src="index.js"></script> | |
| </body> | |
| </html> |