File size: 1,571 Bytes
6165ba9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AIBOM Generator - Error</title>
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body>
<div class="container">
<!-- Header -->
{% include 'includes/header.html' %}
<!-- Error message -->
<div class="error-message">
<h2>โ Error Generating AIBOM</h2>
</div>
<!-- Try Again Button -->
<div style="text-align: left; margin-bottom: 20px;">
<a href="/" class="button">๐ Try Again</a>
</div>
<!-- Error Details -->
<div class="error-section">
<h2>What Happened?</h2>
<div class="error-details">
<p>{{ error }}</p>
</div>
</div>
<!-- Common Solutions -->
<div class="content-section">
<h2>๐ก Common Solutions</h2>
<p><strong>Model not found:</strong> Check that the model ID follows <code>owner/model-name</code> format
and exists on Hugging Face.</p>
<p><strong>Access issues:</strong> Some models require an access token or may be private.</p>
<p><strong>Temporary issues:</strong> Try again if there were connectivity or Hugging Face API hiccups.</p>
</div>
<!-- Modern Footer -->
{% include 'includes/footer.html' %}
</div>
</body>
</html> |