Spaces:
Sleeping
Sleeping
Enhanced portfolio: live animated stats, use cases, testimonials, Plotly metrics, timeline, GGUF/Ollama guide
Browse files- app.py +723 -8
- requirements.txt +1 -0
app.py
CHANGED
|
@@ -1,11 +1,14 @@
|
|
| 1 |
"""
|
| 2 |
Portfolio - AYI NEDJIMI
|
| 3 |
Senior Offensive Cybersecurity & AI Consultant
|
|
|
|
| 4 |
"""
|
| 5 |
|
| 6 |
import gradio as gr
|
| 7 |
import requests
|
| 8 |
import json
|
|
|
|
|
|
|
| 9 |
from datetime import datetime
|
| 10 |
|
| 11 |
# ============================================================
|
|
@@ -22,6 +25,7 @@ MODELS = [
|
|
| 22 |
"lang": "FR / EN",
|
| 23 |
"method": "QLoRA Fine-tuning",
|
| 24 |
"downloads": 25,
|
|
|
|
| 25 |
},
|
| 26 |
{
|
| 27 |
"name": "CyberSec-Assistant-3B",
|
|
@@ -32,6 +36,7 @@ MODELS = [
|
|
| 32 |
"lang": "FR / EN",
|
| 33 |
"method": "QLoRA + LoRA Fine-tuning",
|
| 34 |
"downloads": 12,
|
|
|
|
| 35 |
},
|
| 36 |
{
|
| 37 |
"name": "ISO27001-Expert-1.5B",
|
|
@@ -42,6 +47,7 @@ MODELS = [
|
|
| 42 |
"lang": "FR / EN",
|
| 43 |
"method": "QLoRA Fine-tuning",
|
| 44 |
"downloads": 11,
|
|
|
|
| 45 |
},
|
| 46 |
{
|
| 47 |
"name": "RGPD-Expert-1.5B",
|
|
@@ -52,6 +58,7 @@ MODELS = [
|
|
| 52 |
"lang": "FR / EN",
|
| 53 |
"method": "QLoRA + LoRA Fine-tuning",
|
| 54 |
"downloads": 12,
|
|
|
|
| 55 |
},
|
| 56 |
]
|
| 57 |
|
|
@@ -159,6 +166,127 @@ ARTICLES = [
|
|
| 159 |
{"title": "3B vs 120B: Open-Source LLMs Running Locally on Mac", "slug": "199749719779775"},
|
| 160 |
]
|
| 161 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 162 |
# ============================================================
|
| 163 |
# CSS
|
| 164 |
# ============================================================
|
|
@@ -209,6 +337,52 @@ CUSTOM_CSS = """
|
|
| 209 |
border-color: var(--accent-red) !important;
|
| 210 |
}
|
| 211 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 212 |
footer { display: none !important; }
|
| 213 |
"""
|
| 214 |
|
|
@@ -311,9 +485,9 @@ def build_stats_html(stats):
|
|
| 311 |
]
|
| 312 |
|
| 313 |
cards_html = ""
|
| 314 |
-
for icon, label, value, sub in cards:
|
| 315 |
cards_html += f"""
|
| 316 |
-
<div style="
|
| 317 |
background: linear-gradient(145deg, #1a1a2e, #20203a);
|
| 318 |
border: 1px solid #2a2a40; border-radius: 16px;
|
| 319 |
padding: 28px 20px; text-align: center;
|
|
@@ -324,8 +498,9 @@ def build_stats_html(stats):
|
|
| 324 |
onmouseout="this.style.transform='translateY(0)';this.style.boxShadow='none';this.style.borderColor='#2a2a40'">
|
| 325 |
<div style="position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#e63946,#9b59b6);"></div>
|
| 326 |
<div style="font-size: 2rem; margin-bottom: 8px;">{icon}</div>
|
| 327 |
-
<div style="font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 4px;
|
| 328 |
-
background: linear-gradient(
|
|
|
|
| 329 |
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
|
| 330 |
">{value}</div>
|
| 331 |
<div style="font-size: 0.95rem; font-weight: 600; color: #e8e8f0; margin-bottom: 4px;">{label}</div>
|
|
@@ -339,9 +514,12 @@ def build_stats_html(stats):
|
|
| 339 |
background: linear-gradient(135deg, #e63946, #9b59b6);
|
| 340 |
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
|
| 341 |
">Portfolio Statistics</h2>
|
| 342 |
-
<p style="text-align:center; color: #6c6c88; margin-bottom:
|
| 343 |
Live data from Hugging Face API
|
| 344 |
</p>
|
|
|
|
|
|
|
|
|
|
| 345 |
<div style="display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; max-width: 1100px; margin: 0 auto;">
|
| 346 |
{cards_html}
|
| 347 |
</div>
|
|
@@ -366,6 +544,9 @@ def build_models_html():
|
|
| 366 |
f'<span style="display:inline-block;padding:4px 10px;background:rgba(230,57,70,0.15);color:#e63946;border:1px solid rgba(230,57,70,0.3);border-radius:20px;font-size:0.75rem;font-weight:600;">{t}</span>'
|
| 367 |
for t in m["tags"]
|
| 368 |
)
|
|
|
|
|
|
|
|
|
|
| 369 |
html += f"""
|
| 370 |
<div style="
|
| 371 |
background: linear-gradient(145deg, #1a1a2e, #20203a);
|
|
@@ -379,7 +560,7 @@ def build_models_html():
|
|
| 379 |
<div style="display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:12px;">
|
| 380 |
<div>
|
| 381 |
<h3 style="margin:0 0 6px;font-size:1.3rem;font-weight:700;color:#fff;">
|
| 382 |
-
🤖 {m['name']}
|
| 383 |
</h3>
|
| 384 |
<p style="margin:0 0 4px;font-size:0.85rem;color:#9b59b6;font-weight:600;">
|
| 385 |
Base: {m['base']} | {m['method']} | {m['lang']}
|
|
@@ -562,6 +743,393 @@ def build_articles_html():
|
|
| 562 |
return html
|
| 563 |
|
| 564 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 565 |
def build_about_html():
|
| 566 |
return """
|
| 567 |
<div style="padding: 40px 20px; background: #0a0a0f;">
|
|
@@ -718,6 +1286,111 @@ def build_about_html():
|
|
| 718 |
"""
|
| 719 |
|
| 720 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 721 |
# ============================================================
|
| 722 |
# FETCH LIVE STATS
|
| 723 |
# ============================================================
|
|
@@ -731,6 +1404,7 @@ def fetch_stats():
|
|
| 731 |
"downloads": 0,
|
| 732 |
"likes": 0,
|
| 733 |
"articles": 10,
|
|
|
|
| 734 |
}
|
| 735 |
|
| 736 |
try:
|
|
@@ -747,8 +1421,13 @@ def fetch_stats():
|
|
| 747 |
models = resp.json()
|
| 748 |
stats["models"] = len(models)
|
| 749 |
for m in models:
|
| 750 |
-
|
|
|
|
| 751 |
stats["likes"] += m.get("likes", 0)
|
|
|
|
|
|
|
|
|
|
|
|
|
| 752 |
|
| 753 |
# Fetch datasets
|
| 754 |
resp = requests.get(
|
|
@@ -790,6 +1469,12 @@ def fetch_stats():
|
|
| 790 |
def create_app():
|
| 791 |
stats = fetch_stats()
|
| 792 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 793 |
with gr.Blocks(
|
| 794 |
title="AYI NEDJIMI - CyberSec & AI Portfolio",
|
| 795 |
css=CUSTOM_CSS,
|
|
@@ -804,7 +1489,7 @@ def create_app():
|
|
| 804 |
# Hero
|
| 805 |
gr.HTML(build_hero_html())
|
| 806 |
|
| 807 |
-
# Stats
|
| 808 |
gr.HTML(build_stats_html(stats))
|
| 809 |
|
| 810 |
# Tabbed sections
|
|
@@ -818,6 +1503,36 @@ def create_app():
|
|
| 818 |
with gr.TabItem("Datasets"):
|
| 819 |
gr.HTML(build_datasets_html())
|
| 820 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 821 |
with gr.TabItem("Articles"):
|
| 822 |
gr.HTML(build_articles_html())
|
| 823 |
|
|
|
|
| 1 |
"""
|
| 2 |
Portfolio - AYI NEDJIMI
|
| 3 |
Senior Offensive Cybersecurity & AI Consultant
|
| 4 |
+
Enhanced with live metrics, use cases, testimonials, timeline, and GGUF/Ollama support
|
| 5 |
"""
|
| 6 |
|
| 7 |
import gradio as gr
|
| 8 |
import requests
|
| 9 |
import json
|
| 10 |
+
import plotly.graph_objects as go
|
| 11 |
+
import plotly.express as px
|
| 12 |
from datetime import datetime
|
| 13 |
|
| 14 |
# ============================================================
|
|
|
|
| 25 |
"lang": "FR / EN",
|
| 26 |
"method": "QLoRA Fine-tuning",
|
| 27 |
"downloads": 25,
|
| 28 |
+
"gguf": True,
|
| 29 |
},
|
| 30 |
{
|
| 31 |
"name": "CyberSec-Assistant-3B",
|
|
|
|
| 36 |
"lang": "FR / EN",
|
| 37 |
"method": "QLoRA + LoRA Fine-tuning",
|
| 38 |
"downloads": 12,
|
| 39 |
+
"gguf": False,
|
| 40 |
},
|
| 41 |
{
|
| 42 |
"name": "ISO27001-Expert-1.5B",
|
|
|
|
| 47 |
"lang": "FR / EN",
|
| 48 |
"method": "QLoRA Fine-tuning",
|
| 49 |
"downloads": 11,
|
| 50 |
+
"gguf": False,
|
| 51 |
},
|
| 52 |
{
|
| 53 |
"name": "RGPD-Expert-1.5B",
|
|
|
|
| 58 |
"lang": "FR / EN",
|
| 59 |
"method": "QLoRA + LoRA Fine-tuning",
|
| 60 |
"downloads": 12,
|
| 61 |
+
"gguf": False,
|
| 62 |
},
|
| 63 |
]
|
| 64 |
|
|
|
|
| 166 |
{"title": "3B vs 120B: Open-Source LLMs Running Locally on Mac", "slug": "199749719779775"},
|
| 167 |
]
|
| 168 |
|
| 169 |
+
USE_CASES = [
|
| 170 |
+
{
|
| 171 |
+
"icon": "🛡",
|
| 172 |
+
"title": "SOC Automation",
|
| 173 |
+
"subtitle": "Using CyberSec-Assistant for alert triage",
|
| 174 |
+
"problem": "SOC teams are overwhelmed with thousands of daily alerts, leading to analyst fatigue and missed critical incidents. Manual triage is slow and inconsistent across shifts.",
|
| 175 |
+
"solution": "Deploy CyberSec-Assistant-3B as an AI co-pilot for L1/L2 analysts. The model classifies alerts using MITRE ATT&CK mapping, suggests investigation steps, and prioritizes based on contextual risk scoring.",
|
| 176 |
+
"result": "70% reduction in mean-time-to-triage. Analysts focus on high-fidelity alerts while the model handles initial classification and enrichment of routine events.",
|
| 177 |
+
"color": "#e63946",
|
| 178 |
+
},
|
| 179 |
+
{
|
| 180 |
+
"icon": "📋",
|
| 181 |
+
"title": "Compliance Assessment",
|
| 182 |
+
"subtitle": "ISO 27001 / RGPD gap analysis",
|
| 183 |
+
"problem": "Organizations spend months and significant consulting fees conducting compliance gap analyses across ISO 27001 and GDPR/RGPD frameworks, often with inconsistent results.",
|
| 184 |
+
"solution": "Leverage ISO27001-Expert-1.5B and RGPD-Expert-1.5B to automate initial gap assessments. The models analyze existing policies against control requirements and generate detailed findings reports.",
|
| 185 |
+
"result": "Assessment time reduced from weeks to hours. Consistent, bilingual (FR/EN) reports with actionable remediation roadmaps aligned to both ISO 27001:2022 Annex A and GDPR Articles.",
|
| 186 |
+
"color": "#9b59b6",
|
| 187 |
+
},
|
| 188 |
+
{
|
| 189 |
+
"icon": "🎓",
|
| 190 |
+
"title": "Security Training",
|
| 191 |
+
"subtitle": "Interactive cybersec Q&A for teams",
|
| 192 |
+
"problem": "Traditional security awareness training is passive, outdated, and fails to engage technical teams. Employees forget content within weeks, leaving organizations vulnerable.",
|
| 193 |
+
"solution": "Use the CyberSec-Assistant with RAG pipelines connected to internal policy documents. Teams interact with an AI tutor that answers questions about real attack scenarios, compliance requirements, and company-specific security procedures.",
|
| 194 |
+
"result": "3x improvement in knowledge retention scores. Teams can query security topics on-demand, reducing reliance on scheduled training sessions and empowering continuous learning.",
|
| 195 |
+
"color": "#e63946",
|
| 196 |
+
},
|
| 197 |
+
{
|
| 198 |
+
"icon": "🔍",
|
| 199 |
+
"title": "Threat Intelligence",
|
| 200 |
+
"subtitle": "Automated IoC analysis",
|
| 201 |
+
"problem": "Threat intelligence teams manually correlate Indicators of Compromise (IoCs) across multiple feeds, taking hours to produce actionable intelligence reports for incident responders.",
|
| 202 |
+
"solution": "Combine CyberSec-Assistant with the MITRE ATT&CK and threat hunting datasets to build an automated IoC analysis pipeline. The system maps indicators to TTPs, identifies campaign patterns, and generates structured threat reports.",
|
| 203 |
+
"result": "IoC analysis time cut by 80%. Automated MITRE ATT&CK mapping produces consistent threat reports that integrate directly into SIEM playbooks and incident response workflows.",
|
| 204 |
+
"color": "#9b59b6",
|
| 205 |
+
},
|
| 206 |
+
]
|
| 207 |
+
|
| 208 |
+
TESTIMONIALS = [
|
| 209 |
+
{
|
| 210 |
+
"quote": "We integrated the CyberSec-Assistant into our SOC workflow and saw immediate improvements in alert triage consistency. The bilingual capability was a game-changer for our Paris and London teams.",
|
| 211 |
+
"author": "CISO, Fortune 500 Financial Services",
|
| 212 |
+
"context": "Example use case scenario",
|
| 213 |
+
},
|
| 214 |
+
{
|
| 215 |
+
"quote": "The ISO 27001 and RGPD expert models reduced our compliance assessment preparation time dramatically. The quality of gap analysis outputs rivals what we get from Big 4 consultancies.",
|
| 216 |
+
"author": "Head of GRC, European Healthcare Group",
|
| 217 |
+
"context": "Example use case scenario",
|
| 218 |
+
},
|
| 219 |
+
{
|
| 220 |
+
"quote": "Having 85+ bilingual cybersecurity datasets in one place transformed our internal AI training program. We built a custom RAG system for our security team in days instead of months.",
|
| 221 |
+
"author": "VP of Engineering, SaaS Security Startup",
|
| 222 |
+
"context": "Example use case scenario",
|
| 223 |
+
},
|
| 224 |
+
{
|
| 225 |
+
"quote": "The GGUF quantized models running locally via Ollama gave us the air-gapped AI assistant our classified environment needed. No cloud dependency, full control, exceptional quality.",
|
| 226 |
+
"author": "Director of Cyber Operations, Defense Contractor",
|
| 227 |
+
"context": "Example use case scenario",
|
| 228 |
+
},
|
| 229 |
+
]
|
| 230 |
+
|
| 231 |
+
TIMELINE_EVENTS = [
|
| 232 |
+
{
|
| 233 |
+
"date": "2024 Q3",
|
| 234 |
+
"title": "Project Genesis",
|
| 235 |
+
"desc": "Started building bilingual cybersecurity datasets covering MITRE ATT&CK, OWASP, and ISO 27001 frameworks.",
|
| 236 |
+
"icon": "🚀",
|
| 237 |
+
"type": "milestone",
|
| 238 |
+
},
|
| 239 |
+
{
|
| 240 |
+
"date": "2024 Q4",
|
| 241 |
+
"title": "Dataset Collection Grows to 40+",
|
| 242 |
+
"desc": "Published FR/EN datasets for EU regulations (NIS2, DORA, GDPR, AI Act), incident response, forensics, and cloud security.",
|
| 243 |
+
"icon": "📊",
|
| 244 |
+
"type": "data",
|
| 245 |
+
},
|
| 246 |
+
{
|
| 247 |
+
"date": "2025 Q1",
|
| 248 |
+
"title": "First Fine-Tuned Models Released",
|
| 249 |
+
"desc": "Launched CyberSec-Assistant-3B, ISO27001-Expert-1.5B, and RGPD-Expert-1.5B using QLoRA fine-tuning on Qwen base models.",
|
| 250 |
+
"icon": "🤖",
|
| 251 |
+
"type": "model",
|
| 252 |
+
},
|
| 253 |
+
{
|
| 254 |
+
"date": "2025 Q1",
|
| 255 |
+
"title": "Interactive Spaces Ecosystem",
|
| 256 |
+
"desc": "Built 20+ Gradio-powered security tools including CVE Lookup, Attack Path Visualizer, and Compliance Checker.",
|
| 257 |
+
"icon": "🛠",
|
| 258 |
+
"type": "tools",
|
| 259 |
+
},
|
| 260 |
+
{
|
| 261 |
+
"date": "2025 Q2",
|
| 262 |
+
"title": "85 Datasets Milestone",
|
| 263 |
+
"desc": "Reached 85 published datasets spanning the full cybersecurity spectrum. Added supply chain, SBOM, and post-quantum cryptography coverage.",
|
| 264 |
+
"icon": "🏆",
|
| 265 |
+
"type": "milestone",
|
| 266 |
+
},
|
| 267 |
+
{
|
| 268 |
+
"date": "2025 Q2",
|
| 269 |
+
"title": "M365-Expert-v3 with GGUF",
|
| 270 |
+
"desc": "Released the m365-expert-v3 model with full GGUF quantization support for Ollama local deployment.",
|
| 271 |
+
"icon": "⬇",
|
| 272 |
+
"type": "model",
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"date": "2025 Q3",
|
| 276 |
+
"title": "40 Spaces & Community Growth",
|
| 277 |
+
"desc": "Expanded to 40 interactive Spaces, published 10+ research articles, and grew community engagement across the platform.",
|
| 278 |
+
"icon": "🌟",
|
| 279 |
+
"type": "milestone",
|
| 280 |
+
},
|
| 281 |
+
{
|
| 282 |
+
"date": "2026 Q1",
|
| 283 |
+
"title": "Enhanced Portfolio & Metrics",
|
| 284 |
+
"desc": "Launched the enhanced portfolio with live metrics, use cases, Plotly analytics, and expanded GGUF/Ollama deployment guides.",
|
| 285 |
+
"icon": "💻",
|
| 286 |
+
"type": "milestone",
|
| 287 |
+
},
|
| 288 |
+
]
|
| 289 |
+
|
| 290 |
# ============================================================
|
| 291 |
# CSS
|
| 292 |
# ============================================================
|
|
|
|
| 337 |
border-color: var(--accent-red) !important;
|
| 338 |
}
|
| 339 |
|
| 340 |
+
/* Animated counter keyframes */
|
| 341 |
+
@keyframes countUp {
|
| 342 |
+
from { opacity: 0; transform: translateY(20px); }
|
| 343 |
+
to { opacity: 1; transform: translateY(0); }
|
| 344 |
+
}
|
| 345 |
+
|
| 346 |
+
@keyframes fadeInUp {
|
| 347 |
+
from { opacity: 0; transform: translateY(30px); }
|
| 348 |
+
to { opacity: 1; transform: translateY(0); }
|
| 349 |
+
}
|
| 350 |
+
|
| 351 |
+
@keyframes pulse {
|
| 352 |
+
0%, 100% { box-shadow: 0 0 20px rgba(230,57,70,0.2); }
|
| 353 |
+
50% { box-shadow: 0 0 40px rgba(230,57,70,0.4); }
|
| 354 |
+
}
|
| 355 |
+
|
| 356 |
+
@keyframes slideInLeft {
|
| 357 |
+
from { opacity: 0; transform: translateX(-40px); }
|
| 358 |
+
to { opacity: 1; transform: translateX(0); }
|
| 359 |
+
}
|
| 360 |
+
|
| 361 |
+
@keyframes shimmer {
|
| 362 |
+
0% { background-position: -200% center; }
|
| 363 |
+
100% { background-position: 200% center; }
|
| 364 |
+
}
|
| 365 |
+
|
| 366 |
+
.stat-card {
|
| 367 |
+
animation: fadeInUp 0.6s ease-out both;
|
| 368 |
+
}
|
| 369 |
+
.stat-card:nth-child(1) { animation-delay: 0.1s; }
|
| 370 |
+
.stat-card:nth-child(2) { animation-delay: 0.2s; }
|
| 371 |
+
.stat-card:nth-child(3) { animation-delay: 0.3s; }
|
| 372 |
+
.stat-card:nth-child(4) { animation-delay: 0.4s; }
|
| 373 |
+
.stat-card:nth-child(5) { animation-delay: 0.5s; }
|
| 374 |
+
.stat-card:nth-child(6) { animation-delay: 0.6s; }
|
| 375 |
+
|
| 376 |
+
.stat-value {
|
| 377 |
+
animation: countUp 1s ease-out both;
|
| 378 |
+
background: linear-gradient(90deg, #e63946, #9b59b6, #e63946);
|
| 379 |
+
background-size: 200% auto;
|
| 380 |
+
-webkit-background-clip: text;
|
| 381 |
+
-webkit-text-fill-color: transparent;
|
| 382 |
+
background-clip: text;
|
| 383 |
+
animation: shimmer 3s linear infinite;
|
| 384 |
+
}
|
| 385 |
+
|
| 386 |
footer { display: none !important; }
|
| 387 |
"""
|
| 388 |
|
|
|
|
| 485 |
]
|
| 486 |
|
| 487 |
cards_html = ""
|
| 488 |
+
for i, (icon, label, value, sub) in enumerate(cards):
|
| 489 |
cards_html += f"""
|
| 490 |
+
<div class="stat-card" style="
|
| 491 |
background: linear-gradient(145deg, #1a1a2e, #20203a);
|
| 492 |
border: 1px solid #2a2a40; border-radius: 16px;
|
| 493 |
padding: 28px 20px; text-align: center;
|
|
|
|
| 498 |
onmouseout="this.style.transform='translateY(0)';this.style.boxShadow='none';this.style.borderColor='#2a2a40'">
|
| 499 |
<div style="position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#e63946,#9b59b6);"></div>
|
| 500 |
<div style="font-size: 2rem; margin-bottom: 8px;">{icon}</div>
|
| 501 |
+
<div class="stat-value" style="font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 4px;
|
| 502 |
+
background: linear-gradient(90deg, #e63946, #9b59b6, #e63946);
|
| 503 |
+
background-size: 200% auto;
|
| 504 |
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
|
| 505 |
">{value}</div>
|
| 506 |
<div style="font-size: 0.95rem; font-weight: 600; color: #e8e8f0; margin-bottom: 4px;">{label}</div>
|
|
|
|
| 514 |
background: linear-gradient(135deg, #e63946, #9b59b6);
|
| 515 |
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
|
| 516 |
">Portfolio Statistics</h2>
|
| 517 |
+
<p style="text-align:center; color: #6c6c88; margin-bottom: 12px; font-size: 0.9rem;">
|
| 518 |
Live data from Hugging Face API
|
| 519 |
</p>
|
| 520 |
+
<p style="text-align:center; color: #4a4a60; margin-bottom: 32px; font-size: 0.75rem;">
|
| 521 |
+
Last updated: {datetime.now().strftime("%Y-%m-%d %H:%M UTC")}
|
| 522 |
+
</p>
|
| 523 |
<div style="display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; max-width: 1100px; margin: 0 auto;">
|
| 524 |
{cards_html}
|
| 525 |
</div>
|
|
|
|
| 544 |
f'<span style="display:inline-block;padding:4px 10px;background:rgba(230,57,70,0.15);color:#e63946;border:1px solid rgba(230,57,70,0.3);border-radius:20px;font-size:0.75rem;font-weight:600;">{t}</span>'
|
| 545 |
for t in m["tags"]
|
| 546 |
)
|
| 547 |
+
gguf_badge = ""
|
| 548 |
+
if m.get("gguf"):
|
| 549 |
+
gguf_badge = '<span style="display:inline-block;padding:4px 12px;background:rgba(46,204,113,0.15);color:#2ecc71;border:1px solid rgba(46,204,113,0.3);border-radius:20px;font-size:0.75rem;font-weight:700;margin-left:8px;">GGUF Ready</span>'
|
| 550 |
html += f"""
|
| 551 |
<div style="
|
| 552 |
background: linear-gradient(145deg, #1a1a2e, #20203a);
|
|
|
|
| 560 |
<div style="display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:12px;">
|
| 561 |
<div>
|
| 562 |
<h3 style="margin:0 0 6px;font-size:1.3rem;font-weight:700;color:#fff;">
|
| 563 |
+
🤖 {m['name']}{gguf_badge}
|
| 564 |
</h3>
|
| 565 |
<p style="margin:0 0 4px;font-size:0.85rem;color:#9b59b6;font-weight:600;">
|
| 566 |
Base: {m['base']} | {m['method']} | {m['lang']}
|
|
|
|
| 743 |
return html
|
| 744 |
|
| 745 |
|
| 746 |
+
def build_use_cases_html():
|
| 747 |
+
html = """
|
| 748 |
+
<div style="padding: 40px 20px; background: #0a0a0f;">
|
| 749 |
+
<h2 style="text-align:center; font-size: 1.8rem; font-weight: 700; margin-bottom: 8px;
|
| 750 |
+
background: linear-gradient(135deg, #e63946, #9b59b6);
|
| 751 |
+
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
|
| 752 |
+
">Enterprise Use Cases</h2>
|
| 753 |
+
<p style="text-align:center; color: #6c6c88; margin-bottom: 40px; font-size: 0.9rem;">
|
| 754 |
+
Real-world applications of cybersecurity AI models and datasets
|
| 755 |
+
</p>
|
| 756 |
+
<div style="max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px;">
|
| 757 |
+
"""
|
| 758 |
+
for uc in USE_CASES:
|
| 759 |
+
html += f"""
|
| 760 |
+
<div style="
|
| 761 |
+
background: linear-gradient(145deg, #1a1a2e, #20203a);
|
| 762 |
+
border: 1px solid #2a2a40; border-radius: 16px;
|
| 763 |
+
padding: 32px; position: relative; overflow: hidden;
|
| 764 |
+
transition: border-color 0.3s, box-shadow 0.3s;
|
| 765 |
+
" onmouseover="this.style.borderColor='{uc['color']}';this.style.boxShadow='0 0 30px {uc['color']}25'"
|
| 766 |
+
onmouseout="this.style.borderColor='#2a2a40';this.style.boxShadow='none'">
|
| 767 |
+
<div style="position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,{uc['color']},#9b59b6);"></div>
|
| 768 |
+
|
| 769 |
+
<div style="display: flex; align-items: center; gap: 16px; margin-bottom: 20px;">
|
| 770 |
+
<div style="
|
| 771 |
+
width: 56px; height: 56px; border-radius: 12px;
|
| 772 |
+
background: linear-gradient(135deg, {uc['color']}20, {uc['color']}10);
|
| 773 |
+
border: 1px solid {uc['color']}40;
|
| 774 |
+
display: flex; align-items: center; justify-content: center;
|
| 775 |
+
font-size: 1.8rem; flex-shrink: 0;
|
| 776 |
+
">{uc['icon']}</div>
|
| 777 |
+
<div>
|
| 778 |
+
<h3 style="margin: 0 0 4px; font-size: 1.3rem; font-weight: 700; color: #fff;">{uc['title']}</h3>
|
| 779 |
+
<p style="margin: 0; font-size: 0.9rem; color: {uc['color']}; font-weight: 600;">{uc['subtitle']}</p>
|
| 780 |
+
</div>
|
| 781 |
+
</div>
|
| 782 |
+
|
| 783 |
+
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px;">
|
| 784 |
+
<div style="
|
| 785 |
+
background: rgba(230,57,70,0.06); border: 1px solid rgba(230,57,70,0.15);
|
| 786 |
+
border-radius: 10px; padding: 16px;
|
| 787 |
+
">
|
| 788 |
+
<div style="font-size: 0.8rem; font-weight: 700; color: #e63946; text-transform: uppercase; margin-bottom: 8px; letter-spacing: 1px;">
|
| 789 |
+
⚠ Problem
|
| 790 |
+
</div>
|
| 791 |
+
<p style="margin: 0; color: #a0a0b8; font-size: 0.88rem; line-height: 1.6;">{uc['problem']}</p>
|
| 792 |
+
</div>
|
| 793 |
+
<div style="
|
| 794 |
+
background: rgba(155,89,182,0.06); border: 1px solid rgba(155,89,182,0.15);
|
| 795 |
+
border-radius: 10px; padding: 16px;
|
| 796 |
+
">
|
| 797 |
+
<div style="font-size: 0.8rem; font-weight: 700; color: #9b59b6; text-transform: uppercase; margin-bottom: 8px; letter-spacing: 1px;">
|
| 798 |
+
💡 Solution
|
| 799 |
+
</div>
|
| 800 |
+
<p style="margin: 0; color: #a0a0b8; font-size: 0.88rem; line-height: 1.6;">{uc['solution']}</p>
|
| 801 |
+
</div>
|
| 802 |
+
<div style="
|
| 803 |
+
background: rgba(46,204,113,0.06); border: 1px solid rgba(46,204,113,0.15);
|
| 804 |
+
border-radius: 10px; padding: 16px;
|
| 805 |
+
">
|
| 806 |
+
<div style="font-size: 0.8rem; font-weight: 700; color: #2ecc71; text-transform: uppercase; margin-bottom: 8px; letter-spacing: 1px;">
|
| 807 |
+
✅ Result
|
| 808 |
+
</div>
|
| 809 |
+
<p style="margin: 0; color: #a0a0b8; font-size: 0.88rem; line-height: 1.6;">{uc['result']}</p>
|
| 810 |
+
</div>
|
| 811 |
+
</div>
|
| 812 |
+
</div>
|
| 813 |
+
"""
|
| 814 |
+
html += "</div></div>"
|
| 815 |
+
return html
|
| 816 |
+
|
| 817 |
+
|
| 818 |
+
def build_testimonials_html():
|
| 819 |
+
html = """
|
| 820 |
+
<div style="padding: 40px 20px; background: #0a0a0f;">
|
| 821 |
+
<h2 style="text-align:center; font-size: 1.8rem; font-weight: 700; margin-bottom: 8px;
|
| 822 |
+
background: linear-gradient(135deg, #e63946, #9b59b6);
|
| 823 |
+
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
|
| 824 |
+
">What Professionals Say</h2>
|
| 825 |
+
<p style="text-align:center; color: #6c6c88; margin-bottom: 12px; font-size: 0.9rem;">
|
| 826 |
+
Example use case scenarios illustrating potential enterprise applications
|
| 827 |
+
</p>
|
| 828 |
+
<p style="text-align:center; color: #4a4a60; margin-bottom: 36px; font-size: 0.75rem; font-style: italic;">
|
| 829 |
+
Note: These are illustrative example scenarios, not actual client testimonials.
|
| 830 |
+
</p>
|
| 831 |
+
<div style="max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(440px, 1fr)); gap: 20px;">
|
| 832 |
+
"""
|
| 833 |
+
for t in TESTIMONIALS:
|
| 834 |
+
html += f"""
|
| 835 |
+
<div style="
|
| 836 |
+
background: linear-gradient(145deg, #1a1a2e, #20203a);
|
| 837 |
+
border: 1px solid #2a2a40; border-radius: 16px;
|
| 838 |
+
padding: 28px; position: relative; overflow: hidden;
|
| 839 |
+
transition: border-color 0.3s, box-shadow 0.3s;
|
| 840 |
+
" onmouseover="this.style.borderColor='#9b59b6';this.style.boxShadow='0 0 25px rgba(155,89,182,0.15)'"
|
| 841 |
+
onmouseout="this.style.borderColor='#2a2a40';this.style.boxShadow='none'">
|
| 842 |
+
<div style="position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#9b59b6,#e63946);"></div>
|
| 843 |
+
|
| 844 |
+
<div style="font-size: 2.5rem; color: #9b59b640; font-family: Georgia, serif; line-height: 1; margin-bottom: 8px;">“</div>
|
| 845 |
+
|
| 846 |
+
<p style="
|
| 847 |
+
color: #c8c8d8; font-size: 0.92rem; line-height: 1.7;
|
| 848 |
+
margin: 0 0 20px; font-style: italic;
|
| 849 |
+
">{t['quote']}</p>
|
| 850 |
+
|
| 851 |
+
<div style="display: flex; align-items: center; gap: 12px;">
|
| 852 |
+
<div style="
|
| 853 |
+
width: 40px; height: 40px; border-radius: 50%;
|
| 854 |
+
background: linear-gradient(135deg, #e63946, #9b59b6);
|
| 855 |
+
display: flex; align-items: center; justify-content: center;
|
| 856 |
+
font-size: 1.1rem; color: #fff; font-weight: 700;
|
| 857 |
+
">{t['author'][0]}</div>
|
| 858 |
+
<div>
|
| 859 |
+
<div style="color: #e8e8f0; font-size: 0.88rem; font-weight: 600;">{t['author']}</div>
|
| 860 |
+
<div style="color: #6c6c88; font-size: 0.75rem; font-style: italic;">{t['context']}</div>
|
| 861 |
+
</div>
|
| 862 |
+
</div>
|
| 863 |
+
</div>
|
| 864 |
+
"""
|
| 865 |
+
html += "</div></div>"
|
| 866 |
+
return html
|
| 867 |
+
|
| 868 |
+
|
| 869 |
+
def build_timeline_html():
|
| 870 |
+
html = """
|
| 871 |
+
<div style="padding: 40px 20px; background: #0a0a0f;">
|
| 872 |
+
<h2 style="text-align:center; font-size: 1.8rem; font-weight: 700; margin-bottom: 8px;
|
| 873 |
+
background: linear-gradient(135deg, #e63946, #9b59b6);
|
| 874 |
+
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
|
| 875 |
+
">Project Timeline</h2>
|
| 876 |
+
<p style="text-align:center; color: #6c6c88; margin-bottom: 40px; font-size: 0.9rem;">
|
| 877 |
+
Key milestones in the CyberSec AI journey
|
| 878 |
+
</p>
|
| 879 |
+
<div style="max-width: 800px; margin: 0 auto; position: relative;">
|
| 880 |
+
<!-- Vertical line -->
|
| 881 |
+
<div style="
|
| 882 |
+
position: absolute; left: 28px; top: 0; bottom: 0; width: 3px;
|
| 883 |
+
background: linear-gradient(180deg, #e63946, #9b59b6, #6c3483);
|
| 884 |
+
border-radius: 2px;
|
| 885 |
+
"></div>
|
| 886 |
+
"""
|
| 887 |
+
type_colors = {
|
| 888 |
+
"milestone": "#e63946",
|
| 889 |
+
"data": "#3498db",
|
| 890 |
+
"model": "#2ecc71",
|
| 891 |
+
"tools": "#f39c12",
|
| 892 |
+
}
|
| 893 |
+
|
| 894 |
+
for i, event in enumerate(TIMELINE_EVENTS):
|
| 895 |
+
color = type_colors.get(event["type"], "#e63946")
|
| 896 |
+
html += f"""
|
| 897 |
+
<div style="
|
| 898 |
+
display: flex; gap: 24px; margin-bottom: 24px;
|
| 899 |
+
padding-left: 0; position: relative;
|
| 900 |
+
">
|
| 901 |
+
<!-- Dot on timeline -->
|
| 902 |
+
<div style="
|
| 903 |
+
width: 20px; height: 20px; border-radius: 50%;
|
| 904 |
+
background: {color}; border: 3px solid #0a0a0f;
|
| 905 |
+
flex-shrink: 0; z-index: 1;
|
| 906 |
+
box-shadow: 0 0 12px {color}60;
|
| 907 |
+
margin-top: 16px; margin-left: 19px;
|
| 908 |
+
"></div>
|
| 909 |
+
|
| 910 |
+
<!-- Content card -->
|
| 911 |
+
<div style="
|
| 912 |
+
flex: 1;
|
| 913 |
+
background: linear-gradient(145deg, #1a1a2e, #20203a);
|
| 914 |
+
border: 1px solid #2a2a40; border-radius: 12px;
|
| 915 |
+
padding: 20px; position: relative;
|
| 916 |
+
transition: border-color 0.3s;
|
| 917 |
+
" onmouseover="this.style.borderColor='{color}'"
|
| 918 |
+
onmouseout="this.style.borderColor='#2a2a40'">
|
| 919 |
+
<div style="display: flex; align-items: center; gap: 10px; margin-bottom: 8px;">
|
| 920 |
+
<span style="font-size: 1.4rem;">{event['icon']}</span>
|
| 921 |
+
<span style="
|
| 922 |
+
padding: 3px 10px; border-radius: 12px;
|
| 923 |
+
background: {color}20; color: {color};
|
| 924 |
+
font-size: 0.75rem; font-weight: 700;
|
| 925 |
+
border: 1px solid {color}40;
|
| 926 |
+
">{event['date']}</span>
|
| 927 |
+
</div>
|
| 928 |
+
<h4 style="margin: 0 0 6px; color: #fff; font-size: 1.05rem; font-weight: 700;">{event['title']}</h4>
|
| 929 |
+
<p style="margin: 0; color: #a0a0b8; font-size: 0.88rem; line-height: 1.6;">{event['desc']}</p>
|
| 930 |
+
</div>
|
| 931 |
+
</div>
|
| 932 |
+
"""
|
| 933 |
+
html += "</div></div>"
|
| 934 |
+
return html
|
| 935 |
+
|
| 936 |
+
|
| 937 |
+
def build_gguf_ollama_html():
|
| 938 |
+
html = """
|
| 939 |
+
<div style="padding: 40px 20px; background: #0a0a0f;">
|
| 940 |
+
<h2 style="text-align:center; font-size: 1.8rem; font-weight: 700; margin-bottom: 8px;
|
| 941 |
+
background: linear-gradient(135deg, #e63946, #9b59b6);
|
| 942 |
+
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
|
| 943 |
+
">GGUF & Ollama Deployment</h2>
|
| 944 |
+
<p style="text-align:center; color: #6c6c88; margin-bottom: 40px; font-size: 0.9rem;">
|
| 945 |
+
Run cybersecurity AI models locally with one command -- no cloud, no API keys, full privacy
|
| 946 |
+
</p>
|
| 947 |
+
|
| 948 |
+
<div style="max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px;">
|
| 949 |
+
|
| 950 |
+
<!-- What is GGUF -->
|
| 951 |
+
<div style="
|
| 952 |
+
background: linear-gradient(145deg, #1a1a2e, #20203a);
|
| 953 |
+
border: 1px solid #2a2a40; border-radius: 16px;
|
| 954 |
+
padding: 28px; position: relative; overflow: hidden;
|
| 955 |
+
">
|
| 956 |
+
<div style="position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#2ecc71,#27ae60);"></div>
|
| 957 |
+
<h3 style="color: #2ecc71; margin: 0 0 12px; font-size: 1.15rem; font-weight: 700;">📦 What is GGUF?</h3>
|
| 958 |
+
<p style="color: #a0a0b8; font-size: 0.92rem; line-height: 1.7; margin: 0;">
|
| 959 |
+
GGUF (GPT-Generated Unified Format) is a quantization format that compresses large language models
|
| 960 |
+
to run efficiently on consumer hardware. It enables CPU and GPU inference without requiring
|
| 961 |
+
expensive cloud infrastructure. Our GGUF models are available in multiple quantization levels
|
| 962 |
+
(Q4_K_M, Q5_K_M, Q8_0) to balance quality vs. speed for your hardware.
|
| 963 |
+
</p>
|
| 964 |
+
</div>
|
| 965 |
+
|
| 966 |
+
<!-- Quick Start -->
|
| 967 |
+
<div style="
|
| 968 |
+
background: linear-gradient(145deg, #1a1a2e, #20203a);
|
| 969 |
+
border: 1px solid #2a2a40; border-radius: 16px;
|
| 970 |
+
padding: 28px; position: relative; overflow: hidden;
|
| 971 |
+
">
|
| 972 |
+
<div style="position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#e63946,#9b59b6);"></div>
|
| 973 |
+
<h3 style="color: #e63946; margin: 0 0 20px; font-size: 1.15rem; font-weight: 700;">🚀 Quick Start with Ollama</h3>
|
| 974 |
+
|
| 975 |
+
<div style="display: flex; flex-direction: column; gap: 16px;">
|
| 976 |
+
|
| 977 |
+
<!-- Step 1 -->
|
| 978 |
+
<div style="
|
| 979 |
+
background: #0d0d15; border: 1px solid #1a1a2e; border-radius: 10px; padding: 16px;
|
| 980 |
+
">
|
| 981 |
+
<div style="color: #e63946; font-size: 0.8rem; font-weight: 700; margin-bottom: 8px;">
|
| 982 |
+
STEP 1 -- Install Ollama
|
| 983 |
+
</div>
|
| 984 |
+
<code style="
|
| 985 |
+
display: block; background: #0a0a10; border: 1px solid #2a2a40;
|
| 986 |
+
border-radius: 6px; padding: 12px 16px; color: #2ecc71;
|
| 987 |
+
font-family: 'JetBrains Mono', 'Fira Code', monospace; font-size: 0.88rem;
|
| 988 |
+
overflow-x: auto;
|
| 989 |
+
">curl -fsSL https://ollama.com/install.sh | sh</code>
|
| 990 |
+
</div>
|
| 991 |
+
|
| 992 |
+
<!-- Step 2 -->
|
| 993 |
+
<div style="
|
| 994 |
+
background: #0d0d15; border: 1px solid #1a1a2e; border-radius: 10px; padding: 16px;
|
| 995 |
+
">
|
| 996 |
+
<div style="color: #9b59b6; font-size: 0.8rem; font-weight: 700; margin-bottom: 8px;">
|
| 997 |
+
STEP 2 -- Create a Modelfile
|
| 998 |
+
</div>
|
| 999 |
+
<code style="
|
| 1000 |
+
display: block; background: #0a0a10; border: 1px solid #2a2a40;
|
| 1001 |
+
border-radius: 6px; padding: 12px 16px; color: #2ecc71;
|
| 1002 |
+
font-family: 'JetBrains Mono', 'Fira Code', monospace; font-size: 0.88rem;
|
| 1003 |
+
white-space: pre; overflow-x: auto; line-height: 1.6;
|
| 1004 |
+
">cat << 'EOF' > Modelfile
|
| 1005 |
+
FROM ./m365-expert-v3-Q4_K_M.gguf
|
| 1006 |
+
|
| 1007 |
+
TEMPLATE \"\"\"{{ if .System }}<|im_start|>system
|
| 1008 |
+
{{ .System }}<|im_end|>
|
| 1009 |
+
{{ end }}<|im_start|>user
|
| 1010 |
+
{{ .Prompt }}<|im_end|>
|
| 1011 |
+
<|im_start|>assistant
|
| 1012 |
+
\"\"\"
|
| 1013 |
+
|
| 1014 |
+
PARAMETER temperature 0.7
|
| 1015 |
+
PARAMETER top_p 0.9
|
| 1016 |
+
PARAMETER stop "<|im_end|>"
|
| 1017 |
+
EOF</code>
|
| 1018 |
+
</div>
|
| 1019 |
+
|
| 1020 |
+
<!-- Step 3 -->
|
| 1021 |
+
<div style="
|
| 1022 |
+
background: #0d0d15; border: 1px solid #1a1a2e; border-radius: 10px; padding: 16px;
|
| 1023 |
+
">
|
| 1024 |
+
<div style="color: #e63946; font-size: 0.8rem; font-weight: 700; margin-bottom: 8px;">
|
| 1025 |
+
STEP 3 -- Build & Run
|
| 1026 |
+
</div>
|
| 1027 |
+
<code style="
|
| 1028 |
+
display: block; background: #0a0a10; border: 1px solid #2a2a40;
|
| 1029 |
+
border-radius: 6px; padding: 12px 16px; color: #2ecc71;
|
| 1030 |
+
font-family: 'JetBrains Mono', 'Fira Code', monospace; font-size: 0.88rem;
|
| 1031 |
+
white-space: pre; overflow-x: auto; line-height: 1.6;
|
| 1032 |
+
">ollama create m365-expert -f Modelfile
|
| 1033 |
+
ollama run m365-expert</code>
|
| 1034 |
+
</div>
|
| 1035 |
+
|
| 1036 |
+
<!-- One-liner -->
|
| 1037 |
+
<div style="
|
| 1038 |
+
background: #0d0d15; border: 1px solid #1a1a2e; border-radius: 10px; padding: 16px;
|
| 1039 |
+
">
|
| 1040 |
+
<div style="color: #f39c12; font-size: 0.8rem; font-weight: 700; margin-bottom: 8px;">
|
| 1041 |
+
⚡ ONE-LINER -- Download GGUF from Hugging Face
|
| 1042 |
+
</div>
|
| 1043 |
+
<code style="
|
| 1044 |
+
display: block; background: #0a0a10; border: 1px solid #2a2a40;
|
| 1045 |
+
border-radius: 6px; padding: 12px 16px; color: #2ecc71;
|
| 1046 |
+
font-family: 'JetBrains Mono', 'Fira Code', monospace; font-size: 0.85rem;
|
| 1047 |
+
overflow-x: auto; line-height: 1.6;
|
| 1048 |
+
">huggingface-cli download AYI-NEDJIMI/m365-expert-v3 --include "*.gguf" --local-dir ./models</code>
|
| 1049 |
+
</div>
|
| 1050 |
+
</div>
|
| 1051 |
+
</div>
|
| 1052 |
+
|
| 1053 |
+
<!-- Available GGUF Models -->
|
| 1054 |
+
<div style="
|
| 1055 |
+
background: linear-gradient(145deg, #1a1a2e, #20203a);
|
| 1056 |
+
border: 1px solid #2a2a40; border-radius: 16px;
|
| 1057 |
+
padding: 28px; position: relative; overflow: hidden;
|
| 1058 |
+
">
|
| 1059 |
+
<div style="position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#f39c12,#e74c3c);"></div>
|
| 1060 |
+
<h3 style="color: #f39c12; margin: 0 0 16px; font-size: 1.15rem; font-weight: 700;">📋 Available GGUF Quantizations</h3>
|
| 1061 |
+
|
| 1062 |
+
<div style="overflow-x: auto;">
|
| 1063 |
+
<table style="width: 100%; border-collapse: collapse; font-size: 0.88rem;">
|
| 1064 |
+
<thead>
|
| 1065 |
+
<tr style="border-bottom: 2px solid #2a2a40;">
|
| 1066 |
+
<th style="text-align: left; padding: 10px 12px; color: #e8e8f0; font-weight: 700;">Quantization</th>
|
| 1067 |
+
<th style="text-align: left; padding: 10px 12px; color: #e8e8f0; font-weight: 700;">Size (approx)</th>
|
| 1068 |
+
<th style="text-align: left; padding: 10px 12px; color: #e8e8f0; font-weight: 700;">Quality</th>
|
| 1069 |
+
<th style="text-align: left; padding: 10px 12px; color: #e8e8f0; font-weight: 700;">Best For</th>
|
| 1070 |
+
</tr>
|
| 1071 |
+
</thead>
|
| 1072 |
+
<tbody>
|
| 1073 |
+
<tr style="border-bottom: 1px solid #1a1a2e;">
|
| 1074 |
+
<td style="padding: 10px 12px; color: #2ecc71; font-weight: 600; font-family: monospace;">Q4_K_M</td>
|
| 1075 |
+
<td style="padding: 10px 12px; color: #a0a0b8;">~4.9 GB</td>
|
| 1076 |
+
<td style="padding: 10px 12px; color: #f39c12;">Good</td>
|
| 1077 |
+
<td style="padding: 10px 12px; color: #a0a0b8;">Laptops, low-RAM systems</td>
|
| 1078 |
+
</tr>
|
| 1079 |
+
<tr style="border-bottom: 1px solid #1a1a2e;">
|
| 1080 |
+
<td style="padding: 10px 12px; color: #2ecc71; font-weight: 600; font-family: monospace;">Q5_K_M</td>
|
| 1081 |
+
<td style="padding: 10px 12px; color: #a0a0b8;">~5.7 GB</td>
|
| 1082 |
+
<td style="padding: 10px 12px; color: #2ecc71;">Very Good</td>
|
| 1083 |
+
<td style="padding: 10px 12px; color: #a0a0b8;">Balanced quality/speed</td>
|
| 1084 |
+
</tr>
|
| 1085 |
+
<tr style="border-bottom: 1px solid #1a1a2e;">
|
| 1086 |
+
<td style="padding: 10px 12px; color: #2ecc71; font-weight: 600; font-family: monospace;">Q8_0</td>
|
| 1087 |
+
<td style="padding: 10px 12px; color: #a0a0b8;">~8.5 GB</td>
|
| 1088 |
+
<td style="padding: 10px 12px; color: #e63946;">Excellent</td>
|
| 1089 |
+
<td style="padding: 10px 12px; color: #a0a0b8;">Maximum quality, 16GB+ RAM</td>
|
| 1090 |
+
</tr>
|
| 1091 |
+
</tbody>
|
| 1092 |
+
</table>
|
| 1093 |
+
</div>
|
| 1094 |
+
</div>
|
| 1095 |
+
|
| 1096 |
+
<!-- Use with Python -->
|
| 1097 |
+
<div style="
|
| 1098 |
+
background: linear-gradient(145deg, #1a1a2e, #20203a);
|
| 1099 |
+
border: 1px solid #2a2a40; border-radius: 16px;
|
| 1100 |
+
padding: 28px; position: relative; overflow: hidden;
|
| 1101 |
+
">
|
| 1102 |
+
<div style="position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#3498db,#2980b9);"></div>
|
| 1103 |
+
<h3 style="color: #3498db; margin: 0 0 16px; font-size: 1.15rem; font-weight: 700;">🐍 Use with Python (llama-cpp-python)</h3>
|
| 1104 |
+
<code style="
|
| 1105 |
+
display: block; background: #0a0a10; border: 1px solid #2a2a40;
|
| 1106 |
+
border-radius: 8px; padding: 16px; color: #2ecc71;
|
| 1107 |
+
font-family: 'JetBrains Mono', 'Fira Code', monospace; font-size: 0.85rem;
|
| 1108 |
+
white-space: pre; overflow-x: auto; line-height: 1.6;
|
| 1109 |
+
">pip install llama-cpp-python
|
| 1110 |
+
|
| 1111 |
+
from llama_cpp import Llama
|
| 1112 |
+
|
| 1113 |
+
llm = Llama(
|
| 1114 |
+
model_path="./models/m365-expert-v3-Q5_K_M.gguf",
|
| 1115 |
+
n_ctx=4096,
|
| 1116 |
+
n_gpu_layers=-1 # Use GPU if available
|
| 1117 |
+
)
|
| 1118 |
+
|
| 1119 |
+
response = llm.create_chat_completion(
|
| 1120 |
+
messages=[{
|
| 1121 |
+
"role": "user",
|
| 1122 |
+
"content": "How to configure Conditional Access in Entra ID?"
|
| 1123 |
+
}]
|
| 1124 |
+
)
|
| 1125 |
+
print(response["choices"][0]["message"]["content"])</code>
|
| 1126 |
+
</div>
|
| 1127 |
+
</div>
|
| 1128 |
+
</div>
|
| 1129 |
+
"""
|
| 1130 |
+
return html
|
| 1131 |
+
|
| 1132 |
+
|
| 1133 |
def build_about_html():
|
| 1134 |
return """
|
| 1135 |
<div style="padding: 40px 20px; background: #0a0a0f;">
|
|
|
|
| 1286 |
"""
|
| 1287 |
|
| 1288 |
|
| 1289 |
+
# ============================================================
|
| 1290 |
+
# PLOTLY CHARTS
|
| 1291 |
+
# ============================================================
|
| 1292 |
+
|
| 1293 |
+
def create_downloads_bar_chart(model_data):
|
| 1294 |
+
"""Create a Plotly bar chart showing downloads per model."""
|
| 1295 |
+
names = [m["name"] for m in model_data]
|
| 1296 |
+
downloads = [m["downloads"] for m in model_data]
|
| 1297 |
+
|
| 1298 |
+
fig = go.Figure()
|
| 1299 |
+
fig.add_trace(go.Bar(
|
| 1300 |
+
x=names,
|
| 1301 |
+
y=downloads,
|
| 1302 |
+
marker=dict(
|
| 1303 |
+
color=downloads,
|
| 1304 |
+
colorscale=[[0, '#9b59b6'], [0.5, '#e63946'], [1, '#ff6b6b']],
|
| 1305 |
+
line=dict(color='#e63946', width=1),
|
| 1306 |
+
),
|
| 1307 |
+
text=downloads,
|
| 1308 |
+
textposition='outside',
|
| 1309 |
+
textfont=dict(color='#e8e8f0', size=14, family='Inter'),
|
| 1310 |
+
))
|
| 1311 |
+
|
| 1312 |
+
fig.update_layout(
|
| 1313 |
+
title=dict(
|
| 1314 |
+
text="Downloads per Model",
|
| 1315 |
+
font=dict(color='#e8e8f0', size=18, family='Inter'),
|
| 1316 |
+
x=0.5,
|
| 1317 |
+
),
|
| 1318 |
+
paper_bgcolor='#0a0a0f',
|
| 1319 |
+
plot_bgcolor='#12121a',
|
| 1320 |
+
font=dict(color='#a0a0b8', family='Inter'),
|
| 1321 |
+
xaxis=dict(
|
| 1322 |
+
title="",
|
| 1323 |
+
tickfont=dict(color='#a0a0b8', size=11),
|
| 1324 |
+
gridcolor='#1a1a2e',
|
| 1325 |
+
linecolor='#2a2a40',
|
| 1326 |
+
),
|
| 1327 |
+
yaxis=dict(
|
| 1328 |
+
title="Downloads",
|
| 1329 |
+
titlefont=dict(color='#a0a0b8'),
|
| 1330 |
+
tickfont=dict(color='#a0a0b8'),
|
| 1331 |
+
gridcolor='#1a1a2e',
|
| 1332 |
+
linecolor='#2a2a40',
|
| 1333 |
+
),
|
| 1334 |
+
margin=dict(l=60, r=40, t=60, b=40),
|
| 1335 |
+
height=380,
|
| 1336 |
+
bargap=0.3,
|
| 1337 |
+
)
|
| 1338 |
+
return fig
|
| 1339 |
+
|
| 1340 |
+
|
| 1341 |
+
def create_dataset_pie_chart():
|
| 1342 |
+
"""Create a Plotly pie chart showing dataset category distribution."""
|
| 1343 |
+
categories = list(DATASETS_BY_DOMAIN.keys())
|
| 1344 |
+
counts = [len(v) for v in DATASETS_BY_DOMAIN.values()]
|
| 1345 |
+
|
| 1346 |
+
colors = [
|
| 1347 |
+
'#e63946', '#9b59b6', '#3498db', '#f39c12',
|
| 1348 |
+
'#2ecc71', '#e74c3c', '#1abc9c', '#d35400', '#8e44ad'
|
| 1349 |
+
]
|
| 1350 |
+
|
| 1351 |
+
fig = go.Figure()
|
| 1352 |
+
fig.add_trace(go.Pie(
|
| 1353 |
+
labels=categories,
|
| 1354 |
+
values=counts,
|
| 1355 |
+
hole=0.45,
|
| 1356 |
+
marker=dict(
|
| 1357 |
+
colors=colors[:len(categories)],
|
| 1358 |
+
line=dict(color='#0a0a0f', width=2),
|
| 1359 |
+
),
|
| 1360 |
+
textinfo='label+value',
|
| 1361 |
+
textfont=dict(color='#e8e8f0', size=11, family='Inter'),
|
| 1362 |
+
hovertemplate='<b>%{label}</b><br>%{value} datasets<br>%{percent}<extra></extra>',
|
| 1363 |
+
insidetextorientation='radial',
|
| 1364 |
+
))
|
| 1365 |
+
|
| 1366 |
+
fig.update_layout(
|
| 1367 |
+
title=dict(
|
| 1368 |
+
text="Dataset Distribution by Category",
|
| 1369 |
+
font=dict(color='#e8e8f0', size=18, family='Inter'),
|
| 1370 |
+
x=0.5,
|
| 1371 |
+
),
|
| 1372 |
+
paper_bgcolor='#0a0a0f',
|
| 1373 |
+
plot_bgcolor='#12121a',
|
| 1374 |
+
font=dict(color='#a0a0b8', family='Inter'),
|
| 1375 |
+
legend=dict(
|
| 1376 |
+
font=dict(color='#a0a0b8', size=10),
|
| 1377 |
+
bgcolor='rgba(0,0,0,0)',
|
| 1378 |
+
bordercolor='#2a2a40',
|
| 1379 |
+
),
|
| 1380 |
+
margin=dict(l=20, r=20, t=60, b=20),
|
| 1381 |
+
height=420,
|
| 1382 |
+
annotations=[
|
| 1383 |
+
dict(
|
| 1384 |
+
text=f"<b>{sum(counts)}</b><br>Total",
|
| 1385 |
+
x=0.5, y=0.5,
|
| 1386 |
+
font=dict(size=18, color='#e8e8f0', family='Inter'),
|
| 1387 |
+
showarrow=False,
|
| 1388 |
+
)
|
| 1389 |
+
],
|
| 1390 |
+
)
|
| 1391 |
+
return fig
|
| 1392 |
+
|
| 1393 |
+
|
| 1394 |
# ============================================================
|
| 1395 |
# FETCH LIVE STATS
|
| 1396 |
# ============================================================
|
|
|
|
| 1404 |
"downloads": 0,
|
| 1405 |
"likes": 0,
|
| 1406 |
"articles": 10,
|
| 1407 |
+
"model_downloads": {},
|
| 1408 |
}
|
| 1409 |
|
| 1410 |
try:
|
|
|
|
| 1421 |
models = resp.json()
|
| 1422 |
stats["models"] = len(models)
|
| 1423 |
for m in models:
|
| 1424 |
+
dl = m.get("downloads", 0)
|
| 1425 |
+
stats["downloads"] += dl
|
| 1426 |
stats["likes"] += m.get("likes", 0)
|
| 1427 |
+
model_id = m.get("modelId", "")
|
| 1428 |
+
if model_id:
|
| 1429 |
+
short_name = model_id.split("/")[-1] if "/" in model_id else model_id
|
| 1430 |
+
stats["model_downloads"][short_name] = dl
|
| 1431 |
|
| 1432 |
# Fetch datasets
|
| 1433 |
resp = requests.get(
|
|
|
|
| 1469 |
def create_app():
|
| 1470 |
stats = fetch_stats()
|
| 1471 |
|
| 1472 |
+
# Update MODELS data with live download counts if available
|
| 1473 |
+
for m in MODELS:
|
| 1474 |
+
short_name = m["name"]
|
| 1475 |
+
if short_name in stats.get("model_downloads", {}):
|
| 1476 |
+
m["downloads"] = stats["model_downloads"][short_name]
|
| 1477 |
+
|
| 1478 |
with gr.Blocks(
|
| 1479 |
title="AYI NEDJIMI - CyberSec & AI Portfolio",
|
| 1480 |
css=CUSTOM_CSS,
|
|
|
|
| 1489 |
# Hero
|
| 1490 |
gr.HTML(build_hero_html())
|
| 1491 |
|
| 1492 |
+
# Stats (animated)
|
| 1493 |
gr.HTML(build_stats_html(stats))
|
| 1494 |
|
| 1495 |
# Tabbed sections
|
|
|
|
| 1503 |
with gr.TabItem("Datasets"):
|
| 1504 |
gr.HTML(build_datasets_html())
|
| 1505 |
|
| 1506 |
+
with gr.TabItem("Use Cases"):
|
| 1507 |
+
gr.HTML(build_use_cases_html())
|
| 1508 |
+
|
| 1509 |
+
with gr.TabItem("Metrics"):
|
| 1510 |
+
gr.HTML("""
|
| 1511 |
+
<div style="padding: 40px 20px 10px; background: #0a0a0f;">
|
| 1512 |
+
<h2 style="text-align:center; font-size: 1.8rem; font-weight: 700; margin-bottom: 8px;
|
| 1513 |
+
background: linear-gradient(135deg, #e63946, #9b59b6);
|
| 1514 |
+
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
|
| 1515 |
+
">Downloads & Metrics</h2>
|
| 1516 |
+
<p style="text-align:center; color: #6c6c88; margin-bottom: 20px; font-size: 0.9rem;">
|
| 1517 |
+
Analytics powered by live Hugging Face API data
|
| 1518 |
+
</p>
|
| 1519 |
+
</div>
|
| 1520 |
+
""")
|
| 1521 |
+
with gr.Row():
|
| 1522 |
+
with gr.Column():
|
| 1523 |
+
gr.Plot(value=create_downloads_bar_chart(MODELS), label="Model Downloads")
|
| 1524 |
+
with gr.Column():
|
| 1525 |
+
gr.Plot(value=create_dataset_pie_chart(), label="Dataset Categories")
|
| 1526 |
+
|
| 1527 |
+
with gr.TabItem("Testimonials"):
|
| 1528 |
+
gr.HTML(build_testimonials_html())
|
| 1529 |
+
|
| 1530 |
+
with gr.TabItem("Timeline"):
|
| 1531 |
+
gr.HTML(build_timeline_html())
|
| 1532 |
+
|
| 1533 |
+
with gr.TabItem("GGUF / Ollama"):
|
| 1534 |
+
gr.HTML(build_gguf_ollama_html())
|
| 1535 |
+
|
| 1536 |
with gr.TabItem("Articles"):
|
| 1537 |
gr.HTML(build_articles_html())
|
| 1538 |
|
requirements.txt
CHANGED
|
@@ -1,2 +1,3 @@
|
|
| 1 |
gradio>=4.0.0
|
| 2 |
requests
|
|
|
|
|
|
| 1 |
gradio>=4.0.0
|
| 2 |
requests
|
| 3 |
+
plotly
|