Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>AI SBOM Generator</title> | |
<style> | |
body { | |
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
margin: 0; | |
padding: 0; | |
line-height: 1.6; | |
color: #333; | |
background-color: #f9f9f9; | |
} | |
.container { | |
max-width: 1000px; | |
margin: 0 auto; | |
padding: 0 20px; | |
} | |
/* Header styling */ | |
.header { | |
background-color: #ffffff; | |
padding: 15px 20px; | |
border-bottom: 1px solid #e9ecef; | |
box-shadow: 0 2px 5px rgba(0,0,0,0.05); | |
display: flex; | |
align-items: center; | |
margin-bottom: 30px; | |
} | |
.header img { | |
height: 60px; | |
margin-right: 15px; | |
} | |
/* Added header-content div for layout */ | |
.header .header-content { | |
display: flex; | |
flex-direction: column; /* Stack title and count */ | |
} | |
.header h1 { | |
margin: 0; | |
font-size: 28px; | |
color: #2c3e50; | |
font-weight: 600; | |
margin-bottom: 5px; /* Space between title and count */ | |
} | |
/* Added style for sbom-count */ | |
.header .sbom-count { | |
font-size: 14px; | |
color: #555; | |
font-weight: 500; | |
} | |
/* Content styling */ | |
.content-section { | |
background-color: #ffffff; | |
border-radius: 8px; | |
padding: 25px; | |
margin-bottom: 30px; | |
box-shadow: 0 2px 10px rgba(0,0,0,0.05); | |
} | |
.content-section h2 { | |
color: #2c3e50; | |
margin-top: 0; | |
margin-bottom: 20px; | |
font-size: 22px; | |
border-bottom: 2px solid #f0f0f0; | |
padding-bottom: 10px; | |
} | |
.content-section p { | |
margin-bottom: 20px; | |
font-size: 16px; | |
line-height: 1.7; | |
color: #555; | |
} | |
/* Form styling */ | |
.form-section { | |
background-color: #ffffff; | |
border-radius: 8px; | |
padding: 25px; | |
margin-bottom: 30px; | |
box-shadow: 0 2px 10px rgba(0,0,0,0.05); | |
} | |
.form-section p { | |
margin-bottom: 20px; | |
font-size: 16px; | |
color: #555; | |
} | |
form { | |
margin: 20px 0; | |
} | |
input[type="text"] { | |
padding: 12px; | |
border: 1px solid #ddd; | |
border-radius: 6px; | |
margin-right: 10px; | |
width: 350px; | |
font-size: 15px; | |
transition: border-color 0.3s; | |
} | |
input[type="text"]:focus { | |
border-color: #3498db; | |
outline: none; | |
box-shadow: 0 0 5px rgba(52, 152, 219, 0.3); | |
} | |
button { | |
padding: 12px 20px; | |
background-color: #3498db; | |
color: white; | |
border: none; | |
border-radius: 6px; | |
cursor: pointer; | |
font-size: 15px; | |
font-weight: 500; | |
transition: background-color 0.3s; | |
} | |
button:hover { | |
background-color: #2980b9; | |
} | |
/* Style for disabled button */ | |
button:disabled { | |
background-color: #bdc3c7; /* Lighter grey */ | |
cursor: not-allowed; | |
} | |
code { | |
background-color: #f8f9fa; | |
padding: 2px 5px; | |
border-radius: 4px; | |
font-family: monospace; | |
font-size: 14px; | |
color: #e74c3c; | |
} | |
/* Footer styling */ | |
.footer { | |
text-align: center; | |
padding: 20px; | |
color: #7f8c8d; | |
font-size: 14px; | |
margin-top: 30px; | |
} | |
</style> | |
</head> | |
<body> | |
<!-- Header with logo, title, and SBOM count --> | |
<div class="header"> | |
<a href="https://aetheris.ai/" target="_blank"> | |
<img src="https://huggingface.co/spaces/aetheris-ai/aibom-generator/resolve/main/templates/images/AetherisAI-logo.png" alt="Aetheris AI Logo"> | |
</a> | |
<!-- Added header-content div --> | |
<div class="header-content"> | |
<h1>AI SBOM Generator</h1> | |
</div> | |
</div> | |
<div class="container"> | |
<!-- Form Section (Moved to top) --> | |
<div class="form-section"> | |
<h2>Generate Your AI SBOM</h2> | |
<p> | |
Enter a model on Hugging Face, in a format <code><organization-or-username>/<model-name></code> (easy copy button), or model's URL, to generate AI SBOM in CycloneDX format. You can browse available models in the <a href="https://huggingface.co/models" target="_blank" rel="noopener noreferrer">Hugging Face models repository</a>. | |
</p> | |
<!-- Added id="sbom-form" to the form --> | |
<form id="sbom-form" action="/generate" method="post"> | |
<input type="text" name="model_id" placeholder="e.g., openai/whisper-tiny" required> | |
<!-- Added id="generate-button" to the button --> | |
<button id="generate-button" type="submit">Generate AI SBOM</button> | |
</form> | |
</div> | |
<!-- Tool Description Section --> | |
<div class="content-section"> | |
<h2>About This Tool</h2> | |
<p>This open-source tool helps you generate AI SBOMs for models hosted on Hugging Face. It automatically extracts and formats key information—such as model metadata, training datasets, dependencies, and configurations—into a standardized, machine-readable SBOM using the CycloneDX JSON format. While not all models have consistent metadata quality and much of the information is unstructured, this tool helps navigate those gaps by extracting available data and organizing it into a clear, standardized structure to support transparency, security, and compliance.</p> | |
</div> | |
<!-- Introduction Section --> | |
<div class="content-section"> | |
<h2>Understanding AI SBOMs</h2> | |
<p>An AI SBOM (Artificial Intelligence Software Bill of Materials) is a detailed, structured inventory that lists the components and dependencies involved in building and operating an AI system—such as pre-trained models, datasets, libraries, and configuration parameters. Much like a traditional SBOM for software, an AI SBOM brings transparency to what goes into an AI system, enabling organizations to assess security, compliance, and ethical risks. It is essential for managing AI supply chain risks, supporting regulatory requirements, ensuring model provenance, and enabling incident response and audits. As AI systems grow more complex and widely adopted, AI SBOMs become critical for maintaining trust, accountability, and control over how AI technologies are developed, integrated, and deployed.</p> | |
</div> | |
<!-- Support Section --> | |
<div class="content-section"> | |
<h2>Feedback</h2> | |
<p>For feedback or improvement requests please create a <a href="https://github.com/aetheris-ai/aibom-generator/issues" target="_blank" rel="noopener noreferrer">GitHub issue</a>.</p> | |
</div> | |
<!-- Social Section --> | |
<div class="content-section" style="text-align: center;"> | |
<h3>🗣️ Help Us Spread the Word</h3> | |
<p>If you find this tool useful, share it with your network! <a href="https://sbom.aetheris.ai" target="_blank" rel="noopener noreferrer">https://sbom.aetheris.ai</a></p> | |
<a href="https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fsbom.aetheris.ai" target="_blank" rel="noopener noreferrer" style="text-decoration: none;"> | |
<button style="background-color: #0077b5;">🔗 Share on LinkedIn</button> | |
</a> | |
<p style="margin-top: 10px; font-size: 14px;"> | |
Follow us for updates: | |
<a href="https://www.linkedin.com/company/aetheris-ai" target="_blank" rel="noopener noreferrer">@Aetheris AI</a> | |
</p> | |
</div> | |
<!-- Info Section --> | |
<div class="content-section" style="text-align: center;> | |
<!-- Display the SBOM count --> | |
<div class="sbom-count">🚀 Generated AI SBOMs using this tool: <strong>{{ sbom_count if sbom_count else 'N/A' }}</strong></div> | |
</div> | |
<!-- Footer --> | |
<div class="footer"> | |
<p>© 2025 AI SBOM Generator | Powered by Aetheris AI</p> | |
</div> | |
</div> | |
<!-- JavaScript for loading indicator --> | |
<script> | |
document.getElementById('sbom-form').addEventListener('submit', function() { | |
var button = document.getElementById('generate-button'); | |
button.disabled = true; | |
button.textContent = 'Generating...'; // Change button text | |
// Optionally add a spinner icon here if desired | |
}); | |
</script> | |
</body> | |
</html> | |