File size: 9,330 Bytes
75d9d4e
 
 
5f26ab1
a1c038d
5f26ab1
 
a1c038d
 
 
 
 
 
 
 
 
 
 
 
 
5f26ab1
 
 
a1c038d
5f26ab1
 
a1c038d
5f26ab1
 
a1c038d
5f26ab1
 
a1c038d
5f26ab1
 
98b3f9b
 
 
 
 
5f26ab1
 
a1c038d
 
 
98b3f9b
 
 
 
 
 
 
a1c038d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5f26ab1
 
 
a1c038d
 
 
 
 
 
 
 
 
 
 
 
 
 
5f26ab1
 
 
a1c038d
5f26ab1
a1c038d
5f26ab1
a1c038d
5f26ab1
a1c038d
 
 
 
 
 
 
 
 
5f26ab1
a1c038d
5f26ab1
a1c038d
5f26ab1
 
 
a1c038d
5f26ab1
a1c038d
 
 
5f26ab1
a1c038d
5f26ab1
 
 
a1c038d
1a8a56f
 
 
 
 
 
a1c038d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5f26ab1
 
 
98b3f9b
8d5187b
98b3f9b
 
 
 
 
a1c038d
 
5f26ab1
 
 
a1c038d
 
 
 
1b68812
a1c038d
1a8a56f
 
a1c038d
1a8a56f
 
a1c038d
 
 
 
 
 
 
 
 
 
 
 
 
 
5ffee01
 
8752869
5ffee01
8752869
5ffee01
dfdfaa0
 
87c59a4
 
2eb458f
87c59a4
 
 
 
 
 
 
 
98b3f9b
dfdfaa0
6afa896
dfdfaa0
6afa896
dfdfaa0
 
a1c038d
 
 
 
8d5187b
1a8a56f
 
 
 
 
 
 
 
 
 
 
75d9d4e
5f26ab1
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<!DOCTYPE html>
<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>&lt;organization-or-username&gt;/&lt;model-name&gt;</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>