-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathV2_index.html
More file actions
578 lines (527 loc) · 25.1 KB
/
V2_index.html
File metadata and controls
578 lines (527 loc) · 25.1 KB
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>System Design & Verification Requirements Assistant</title>
<!-- Tailwind CSS via CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Google Fonts and Material Icons -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- MathJax for LaTeX rendering -->
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<!-- Graph Visualization Dependencies -->
<script src="lib/bindings/utils.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/dist/vis-network.min.css" integrity="sha512-WgxfT5LWjfszlPHXRmBWHkV2eceiWTOBvrKCNbdgDYTHrT2AeLCGbF4sZlZw3UMN3WtL0tGUoIAKsu8mllg/XA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/vis-network.min.js" integrity="sha512-LnvoEWDFrqGHlHmDD2101OrLcbsfkrzoSpvtSQtxK3RMnRV0eOkhhBN2dXHKRrUU8p2DGRTk35n4O8nWSVe1mQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous" />
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
<style>
body {
font-family: 'Inter', sans-serif;
}
.code-font {
font-family: 'JetBrains Mono', monospace;
}
.gradient-hero {
background: linear-gradient(45deg, #FF8C00, #E35205, #8E2222);
background-size: 200% 200%;
animation: gradient 15s ease infinite;
}
@keyframes gradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.glass-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.chat-window {
max-height: 600px;
overflow-y: auto;
scrollbar-width: thin;
}
.chat-window::-webkit-scrollbar {
width: 8px;
}
.chat-window::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
.chat-window::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}
.chat-window::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* Graph Visualization Styles */
#mynetwork {
width: 100%;
height: 750px;
background-color: #ffffff;
border: 1px solid lightgray;
position: relative;
float: left;
}
#config {
float: left;
width: 400px;
height: 600px;
}
</style>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'vt-maroon': '#8E2222',
'vt-orange': '#E35205',
'dark-maroon': '#630031'
}
}
}
}
</script>
</head>
<body class="bg-gray-50 text-gray-900">
<!-- Navigation Bar -->
<nav class="bg-white shadow-md py-4 px-6 sticky top-0 z-50">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center space-x-2">
<span class="material-icons text-vt-maroon">architecture</span>
<span class="font-bold text-xl">Brought to you by Systems Theory</span>
</div>
<div class="flex items-center space-x-6">
<a href="#about" class="text-gray-700 hover:text-vt-orange transition-colors">About</a>
<a href="#assistant" class="text-gray-700 hover:text-vt-orange transition-colors">Assistant</a>
<a href="#team" class="text-gray-700 hover:text-vt-orange transition-colors">Team</a>
<span class="material-icons">code</span>
</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="gradient-hero text-white py-24 px-6">
<div class="container mx-auto text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-6 leading-tight">System Design & Verification Requirements Assistant</h1>
<p class="text-xl md:text-2xl mb-10 max-w-3xl mx-auto">Design, integrate, and verify complex systems with our cutting-edge interactive assistant.</p>
<a href="#assistant" class="bg-white text-vt-maroon hover:bg-gray-100 font-bold py-3 px-8 rounded-full shadow-lg transform transition hover:scale-105 inline-flex items-center">
<span class="material-icons mr-2">rocket_launch</span>
Start Engineering
</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 px-6 bg-white">
<div class="container mx-auto max-w-5xl">
<h2 class="text-3xl font-bold text-vt-maroon mb-12 text-center">Systems Engineering Simplified</h2>
<div class="grid md:grid-cols-3 gap-10">
<div class="bg-gray-50 p-6 rounded-xl shadow-md transform transition hover:-translate-y-1 hover:shadow-lg">
<div class="mb-4 text-vt-orange">
<span class="material-icons text-4xl">settings_system_daydream</span>
</div>
<h3 class="text-xl font-semibold mb-3">What is Systems Engineering?</h3>
<p class="text-gray-700">
An interdisciplinary field focused on designing, integrating, and managing complex systems throughout their lifecycle, ensuring all components work together seamlessly.
</p>
</div>
<div class="bg-gray-50 p-6 rounded-xl shadow-md transform transition hover:-translate-y-1 hover:shadow-lg">
<div class="mb-4 text-vt-orange">
<span class="material-icons text-4xl">rule</span>
</div>
<h3 class="text-xl font-semibold mb-3">Requirements & Verification</h3>
<p class="text-gray-700">
Requirements define what a system must do and meet. Verification ensures the system satisfies these requirements through simulations, tests, inspections, and analyses.
</p>
</div>
<div class="bg-gray-50 p-6 rounded-xl shadow-md transform transition hover:-translate-y-1 hover:shadow-lg">
<div class="mb-4 text-vt-orange">
<span class="material-icons text-4xl">smart_toy</span>
</div>
<h3 class="text-xl font-semibold mb-3">Our AI Assistant</h3>
<p class="text-gray-700">
This assistant helps outline system design requirements, plan verification activities, and maintain traceability between design and verification with a structured approach.
</p>
</div>
</div>
<div class="mt-16 bg-gray-50 p-8 rounded-xl shadow-md">
<h3 class="text-2xl font-semibold mb-4 text-vt-maroon">How It Works</h3>
<div class="flex flex-col md:flex-row items-center md:space-x-8">
<div class="flex-1 mb-6 md:mb-0">
<p class="text-gray-700 mb-4">
Our assistant combines natural language understanding with advanced systems engineering principles to help you:
</p>
<ul class="space-y-2">
<li class="flex items-start">
<span class="material-icons text-vt-orange mr-2 mt-0.5">check_circle</span>
<span>Define clear, structured system requirements</span>
</li>
<li class="flex items-start">
<span class="material-icons text-vt-orange mr-2 mt-0.5">check_circle</span>
<span>Create comprehensive verification plans</span>
</li>
<li class="flex items-start">
<span class="material-icons text-vt-orange mr-2 mt-0.5">check_circle</span>
<span>Establish traceability between requirements and verification</span>
</li>
<li class="flex items-start">
<span class="material-icons text-vt-orange mr-2 mt-0.5">check_circle</span>
<span>Visualize system relationships with graph representations</span>
</li>
</ul>
</div>
<div class="flex-1">
<div class="bg-white p-4 rounded-lg border border-gray-200 shadow-sm">
<div class="flex items-center mb-3 text-sm text-gray-500">
<span class="material-icons text-green-500 mr-1">input</span>
<span>Input Example</span>
</div>
<p class="text-gray-700 text-sm mb-4 bg-gray-100 p-3 rounded">
"Design a system for drone-based agricultural monitoring that must operate in variable weather conditions and maintain data accuracy above 95%."
</p>
<div class="flex items-center mb-3 text-sm text-gray-500">
<span class="material-icons text-vt-orange mr-1">output</span>
<span>Output</span>
</div>
<p class="text-gray-700 text-sm bg-gray-100 p-3 rounded">
Structured design requirements, verification strategy, traceability matrix, and system visualization.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Assistant Section -->
<section id="assistant" class="py-16 px-6 bg-gray-50">
<div class="container mx-auto max-w-5xl">
<h2 class="text-3xl font-bold text-vt-maroon mb-8 text-center">Engineering Assistant</h2>
<p class="text-center text-gray-700 mb-12 max-w-3xl mx-auto">
Describe your system requirements and our assistant will help create a structured design with verification plans and system visualization.
</p>
<!-- Chat Component -->
<div class="bg-white rounded-xl shadow-md overflow-hidden border border-gray-200">
<!-- Chat Header -->
<div class="bg-gray-100 px-6 py-4 border-b border-gray-200 flex items-center justify-between">
<div class="flex items-center">
<span class="material-icons text-vt-maroon mr-2">smart_toy</span>
<h3 class="font-semibold">Systems Engineering Assistant</h3>
</div>
<button id="clear-chat" class="text-gray-500 hover:text-gray-700">
<span class="material-icons">delete_outline</span>
</button>
</div>
<!-- Chat Window -->
<div id="chat-window" class="chat-window p-6">
<div class="flex items-start mb-6">
<div class="bg-vt-maroon text-white rounded-full w-8 h-8 flex items-center justify-center flex-shrink-0 mr-3">
<span class="material-icons text-sm">smart_toy</span>
</div>
<div class="bg-gray-100 rounded-lg px-4 py-3 max-w-3xl">
<p class="text-gray-800">
Hello! I'm your Systems Engineering Assistant. Describe your system requirements, and I'll help you design a structured system with verification plans. For example, you could ask me to:
</p>
<ul class="mt-2 space-y-1 text-gray-700">
<li>• Design a smart home security system with real-time alerts</li>
<li>• Create requirements for an autonomous delivery robot</li>
<li>• Plan verification for a medical device monitoring system</li>
</ul>
</div>
</div>
<!-- Dynamic chat messages will appear here -->
</div>
<!-- Input Area -->
<div class="border-t border-gray-200 p-4">
<div class="flex space-x-2">
<textarea
id="combined-prompt"
class="flex-grow px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-vt-orange"
placeholder="Describe your system requirements..."
rows="3"
></textarea>
<button
id="combined-send-btn"
class="bg-vt-maroon hover:bg-vt-orange text-white px-4 py-2 rounded-lg transition flex items-center justify-center flex-shrink-0">
<span class="material-icons">send</span>
</button>
</div>
</div>
</div>
<!-- Output Display -->
<div id="output-display" class="mt-8 bg-white rounded-xl shadow-md overflow-hidden border border-gray-200 hidden">
<div class="bg-gray-100 px-6 py-4 border-b border-gray-200">
<h3 class="font-semibold">Generated System Design & Verification</h3>
</div>
<div class="p-6 space-y-6">
<!-- System Design Section -->
<div>
<h4 class="text-lg font-semibold text-vt-maroon flex items-center">
<span class="material-icons mr-2">architecture</span>
System Design
</h4>
<div id="system-design-output" class="mt-2 p-4 bg-gray-50 rounded-lg">
<!-- Content will be inserted here -->
</div>
</div>
<!-- Verification Requirements Section -->
<div>
<h4 class="text-lg font-semibold text-vt-maroon flex items-center">
<span class="material-icons mr-2">rule</span>
Verification Requirements
</h4>
<div id="verification-requirements-output" class="mt-2 p-4 bg-gray-50 rounded-lg">
<!-- Content will be inserted here -->
</div>
</div>
<!-- Traceability Section -->
<div>
<h4 class="text-lg font-semibold text-vt-maroon flex items-center">
<span class="material-icons mr-2">account_tree</span>
Traceability
</h4>
<div id="traceability-output" class="mt-2 p-4 bg-gray-50 rounded-lg">
<!-- Content will be inserted here -->
</div>
</div>
<!-- Verification Conditions Section -->
<div>
<h4 class="text-lg font-semibold text-vt-maroon flex items-center">
<span class="material-icons mr-2">fact_check</span>
Verification Conditions
</h4>
<div id="verification-conditions-output" class="mt-2 p-4 bg-gray-50 rounded-lg">
<!-- Content will be inserted here -->
</div>
</div>
<!-- Graph Visualization Section -->
<div>
<h4 class="text-lg font-semibold text-vt-maroon flex items-center">
<span class="material-icons mr-2">schema</span>
Graph Visualization
</h4>
<div id="system-visual-output" class="mt-2 p-4 bg-gray-50 rounded-lg flex justify-center">
<!-- Mermaid.js graph image will be inserted here -->
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Team Section -->
<section id="team" class="py-16 px-6 bg-white">
<div class="container mx-auto max-w-5xl">
<h2 class="text-3xl font-bold text-vt-maroon mb-12 text-center">Meet Our Team</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Team Members -->
<div class="flex flex-col items-center">
<div class="rounded-full bg-gray-200 w-24 h-24 mb-4 flex items-center justify-center">
<span class="material-icons text-gray-500 text-3xl">person</span>
</div>
<h3 class="font-semibold">Adithya Iyer</h3>
<p class="text-gray-600 text-sm">Systems Theory Team</p>
</div>
<div class="flex flex-col items-center">
<div class="rounded-full bg-gray-200 w-24 h-24 mb-4 flex items-center justify-center">
<span class="material-icons text-gray-500 text-3xl">person</span>
</div>
<h3 class="font-semibold">Cameron Curran</h3>
<p class="text-gray-600 text-sm">Systems Theory Team</p>
</div>
<div class="flex flex-col items-center">
<div class="rounded-full bg-gray-200 w-24 h-24 mb-4 flex items-center justify-center">
<span class="material-icons text-gray-500 text-3xl">person</span>
</div>
<h3 class="font-semibold">Bhavya Shanmugam</h3>
<p class="text-gray-600 text-sm">Systems Theory Team</p>
</div>
<div class="flex flex-col items-center">
<div class="rounded-full bg-gray-200 w-24 h-24 mb-4 flex items-center justify-center">
<span class="material-icons text-gray-500 text-3xl">person</span>
</div>
<h3 class="font-semibold">Bhargav Ashok</h3>
<p class="text-gray-600 text-sm">Systems Theory Team</p>
</div>
</div>
<!-- Supervisor -->
<div class="mt-12 flex flex-col items-center">
<div class="rounded-full bg-gray-200 w-28 h-28 mb-4 flex items-center justify-center">
<span class="material-icons text-gray-500 text-4xl">school</span>
</div>
<h3 class="font-semibold text-lg">Dr. Paul Wach</h3>
<p class="text-gray-600">Supervisor</p>
</div>
<!-- Motto -->
<div class="mt-12 text-center">
<p class="italic text-vt-maroon font-semibold">Ut Prosim, That I may serve</p>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-10 px-6">
<div class="container mx-auto max-w-5xl">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<!-- Virginia Tech Logo -->
<img src="https://cdn.freebiesupply.com/logos/large/2x/virginia-tech-hokies-logo-png-transparent.png" alt="Virginia Tech Logo" class="h-16 w-auto">
</div>
<div class="text-center md:text-right">
<p class="mb-2">© 2025 Virginia Tech Hume Center</p>
<p class="text-gray-400">Systems Theory Team</p>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
// Helper function to format text into paragraphs
function formatText(text) {
if (!text) return "";
const paragraphs = text.split(/\n\s*\n/);
return paragraphs.map(p => `<p class="mb-3 last:mb-0">${p.trim().replace(/\n/g, '<br>')}</p>`).join("");
}
// Function to add a user message to the chat
function addUserMessage(message) {
const html = `
<div class="flex items-start mb-6 justify-end">
<div class="bg-gray-200 rounded-lg px-4 py-3 max-w-3xl ml-3">
<p class="text-gray-800">${formatText(message)}</p>
</div>
<div class="bg-gray-400 text-white rounded-full w-8 h-8 flex items-center justify-center flex-shrink-0">
<span class="material-icons text-sm">person</span>
</div>
</div>
`;
$("#chat-window").append(html);
}
// Function to add an assistant message to the chat
function addAssistantMessage(message) {
const html = `
<div class="flex items-start mb-6">
<div class="bg-vt-maroon text-white rounded-full w-8 h-8 flex items-center justify-center flex-shrink-0 mr-3">
<span class="material-icons text-sm">smart_toy</span>
</div>
<div class="bg-gray-100 rounded-lg px-4 py-3 max-w-3xl">
<p class="text-gray-800">${message}</p>
</div>
</div>
`;
$("#chat-window").append(html);
}
// Function to add a loading message
function addLoadingMessage() {
const html = `
<div class="flex items-start mb-6" id="loading-message">
<div class="bg-vt-maroon text-white rounded-full w-8 h-8 flex items-center justify-center flex-shrink-0 mr-3">
<span class="material-icons text-sm">smart_toy</span>
</div>
<div class="bg-gray-100 rounded-lg px-4 py-3">
<div class="flex space-x-2">
<div class="w-3 h-3 bg-gray-400 rounded-full animate-bounce"></div>
<div class="w-3 h-3 bg-gray-400 rounded-full animate-bounce" style="animation-delay: 0.2s"></div>
<div class="w-3 h-3 bg-gray-400 rounded-full animate-bounce" style="animation-delay: 0.4s"></div>
</div>
</div>
</div>
`;
$("#chat-window").append(html);
}
// Function to remove the loading message
function removeLoadingMessage() {
$("#loading-message").remove();
}
// Function to scroll the chat window to the bottom
function scrollChatToBottom() {
const chatWindow = document.getElementById("chat-window");
chatWindow.scrollTop = chatWindow.scrollHeight;
}
// Event listener for the send button
$("#combined-send-btn").click(function() {
const prompt = $("#combined-prompt").val().trim();
if (!prompt) return;
// Add user message to chat
addUserMessage(prompt);
// Add loading message
addLoadingMessage();
// Scroll to bottom
scrollChatToBottom();
// Clear input
$("#combined-prompt").val("");
// Show output display
$("#output-display").removeClass("hidden");
// AJAX POST to /combined
$.post("/combined", { prompt: prompt }, function(data) {
// Remove loading message
removeLoadingMessage();
// Add assistant response to chat
addAssistantMessage("I've analyzed your requirements and generated a comprehensive system design with verification plans. You can review the detailed outputs below.");
// Scroll chat to bottom
scrollChatToBottom();
// Update output sections
$("#system-design-output").html(formatText(data.system_design));
$("#verification-requirements-output").html(formatText(data.verification_requirements));
$("#traceability-output").html(data.traceability || "No traceability data available.");
$("#verification-conditions-output").html(formatText(data.verification_conditions));
// Update visualization section
if (data.system_visual) {
// Insert SVG directly for Graphviz output
$("#system-visual-output").html(data.system_visual);
} else {
$("#system-visual-output").html(`<p class="text-gray-500">No graph visualization available for this request.</p>`);
}
// Re-typeset LaTeX if available
if (typeof MathJax !== 'undefined') {
MathJax.typesetPromise();
}
}).fail(function() {
// Remove loading message
removeLoadingMessage();
// Add error message
addAssistantMessage("I apologize, but an error occurred while processing your request. Please try again or contact support if the problem persists.");
// Scroll to bottom
scrollChatToBottom();
});
});
// Event listener for pressing Enter in the textarea
$("#combined-prompt").keydown(function(e) {
if (e.keyCode === 13 && !e.shiftKey) {
e.preventDefault();
$("#combined-send-btn").click();
}
});
// Event listener for the clear chat button
$("#clear-chat").click(function() {
// Keep only the initial assistant message
$("#chat-window").html(`
<div class="flex items-start mb-6">
<div class="bg-vt-maroon text-white rounded-full w-8 h-8 flex items-center justify-center flex-shrink-0 mr-3">
<span class="material-icons text-sm">smart_toy</span>
</div>
<div class="bg-gray-100 rounded-lg px-4 py-3 max-w-3xl">
<p class="text-gray-800">
Hello! I'm your Systems Engineering Assistant. Describe your system requirements, and I'll help you design a structured system with verification plans. For example, you could ask me to:
</p>
<ul class="mt-2 space-y-1 text-gray-700">
<li>• Design a smart home security system with real-time alerts</li>
<li>• Create requirements for an autonomous delivery robot</li>
<li>• Plan verification for a medical device monitoring system</li>
</ul>
</div>
</div>
`);
// Hide output display
$("#output-display").addClass("hidden");
});
// Auto-focus the prompt textarea when the page loads
$(document).ready(function() {
$("#combined-prompt").focus();
});
// Remove the old vis.js graph initialization code, as visualization is now handled by the image above.
</script>
</body>
</html>