mirror of https://github.com/aliasrobotics/cai.git
CAI PRO release, v4
Signed-off-by: Víctor Mayoral Vilches <v.mayoralv@gmail.com>
This commit is contained in:
parent
a73677ab2a
commit
166ada7b78
15
README.md
15
README.md
|
|
@ -32,6 +32,14 @@
|
|||
|
||||
<!-- CAI PRO - Professional Edition Banner -->
|
||||
|
||||
<div align="center">
|
||||
<a href="https://aliasrobotics.com/cybersecurityai.php">
|
||||
<img src="media/cai-banner.svg" alt="CAI - Community and Professional Editions" width="100%" style="max-width: 900px;">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<!-- Alternative HTML version (kept as comment for reference) -->
|
||||
<!--
|
||||
<div align="center">
|
||||
<table style="border-collapse: collapse; width: 100%; max-width: 900px; box-shadow: 0 4px 12px rgba(82, 157, 134, 0.15);">
|
||||
<tr>
|
||||
|
|
@ -65,15 +73,14 @@
|
|||
<tr>
|
||||
<td colspan="2" align="center" style="padding: 10px; background: #f6f8fa;">
|
||||
<sub>
|
||||
<a href="https://aliasrobotics.com/cybersecurityai.php">
|
||||
<img src="https://aliasrobotics.com/img/ad_alias1_vs_gpt5_v2.png" alt="alias1 vs GPT-5 Benchmark" style="max-width: 600px; width: 100%; border-radius: 8px; margin-top: 10px;">
|
||||
</a><br>
|
||||
<i>CAI PRO's alias1 model outperforms GPT-5 in cybersecurity benchmarks</i> | <a href="https://aliasrobotics.com/alias1.php#benchmarking">View Full Benchmarks →</a>
|
||||
<a href="https://aliasrobotics.com/cybersecurityai.php"></a><br>
|
||||
<i>CAI PRO w/ <code>alias1</code> model outperforms GPT-5 in AI vs AI cybersecurity benchmarks</i> | <a href="https://aliasrobotics.com/alias1.php#benchmarking">View Full Benchmarks →</a>
|
||||
</sub>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
-->
|
||||
|
||||
|
||||
Cybersecurity AI (CAI) is a lightweight, open-source framework that empowers security professionals to build and deploy AI-powered offensive and defensive automation. CAI is the *de facto* framework for AI Security, already used by thousands of individual users and hundreds of organizations. Whether you're a security researcher, ethical hacker, IT professional, or organization looking to enhance your security posture, CAI provides the building blocks to create specialized AI agents that can assist with mitigation, vulnerability discovery, exploitation, and security assessment.
|
||||
|
|
|
|||
|
|
@ -0,0 +1,173 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 320" width="900" height="320">
|
||||
<!-- Definitions for gradients and filters -->
|
||||
<defs>
|
||||
<!-- Community Edition background gradient -->
|
||||
<linearGradient id="communityBg" x1="0%" y1="0%" x2="100%" y2="100%">
|
||||
<stop offset="0%" style="stop-color:#f0f8f6;stop-opacity:1" />
|
||||
<stop offset="100%" style="stop-color:#ffffff;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
|
||||
<!-- Professional Edition background gradient -->
|
||||
<linearGradient id="proBg" x1="0%" y1="0%" x2="100%" y2="100%">
|
||||
<stop offset="0%" style="stop-color:#529d86;stop-opacity:1" />
|
||||
<stop offset="100%" style="stop-color:#6bb09a;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
|
||||
<!-- Code block gradient for community -->
|
||||
<linearGradient id="codeBlockBg" x1="0%" y1="0%" x2="100%" y2="100%">
|
||||
<stop offset="0%" style="stop-color:#e8f5f1;stop-opacity:1" />
|
||||
<stop offset="100%" style="stop-color:#d4ede5;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
|
||||
<!-- Button gradient -->
|
||||
<linearGradient id="buttonBg" x1="0%" y1="0%" x2="100%" y2="100%">
|
||||
<stop offset="0%" style="stop-color:#ffffff;stop-opacity:1" />
|
||||
<stop offset="100%" style="stop-color:#f0f8f6;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
|
||||
<!-- Drop shadow filter -->
|
||||
<filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
|
||||
<feGaussianBlur in="SourceAlpha" stdDeviation="3"/>
|
||||
<feOffset dx="0" dy="2" result="offsetblur"/>
|
||||
<feFlood flood-color="#529d86" flood-opacity="0.15"/>
|
||||
<feComposite in2="offsetblur" operator="in"/>
|
||||
<feMerge>
|
||||
<feMergeNode/>
|
||||
<feMergeNode in="SourceGraphic"/>
|
||||
</feMerge>
|
||||
</filter>
|
||||
|
||||
<!-- Text shadow filter -->
|
||||
<filter id="textShadow">
|
||||
<feGaussianBlur in="SourceAlpha" stdDeviation="1"/>
|
||||
<feOffset dx="0" dy="1" result="offsetblur"/>
|
||||
<feFlood flood-color="#000000" flood-opacity="0.2"/>
|
||||
<feComposite in2="offsetblur" operator="in"/>
|
||||
<feMerge>
|
||||
<feMergeNode/>
|
||||
<feMergeNode in="SourceGraphic"/>
|
||||
</feMerge>
|
||||
</filter>
|
||||
|
||||
<!-- Button shadow -->
|
||||
<filter id="buttonShadow">
|
||||
<feGaussianBlur in="SourceAlpha" stdDeviation="2"/>
|
||||
<feOffset dx="0" dy="2" result="offsetblur"/>
|
||||
<feFlood flood-color="#000000" flood-opacity="0.2"/>
|
||||
<feComposite in2="offsetblur" operator="in"/>
|
||||
<feMerge>
|
||||
<feMergeNode/>
|
||||
<feMergeNode in="SourceGraphic"/>
|
||||
</feMerge>
|
||||
</filter>
|
||||
</defs>
|
||||
|
||||
<!-- Main container with shadow -->
|
||||
<g filter="url(#shadow)">
|
||||
<!-- Community Edition (Left Panel) -->
|
||||
<rect x="0" y="0" width="450" height="280" fill="url(#communityBg)"
|
||||
stroke="#529d86" stroke-width="3" rx="10" ry="10"
|
||||
style="stroke-linejoin:round; stroke-dasharray:450,1000"/>
|
||||
|
||||
<!-- Professional Edition (Right Panel) -->
|
||||
<rect x="447" y="0" width="453" height="280" fill="url(#proBg)"
|
||||
stroke="#529d86" stroke-width="3" rx="10" ry="10"
|
||||
style="stroke-linejoin:round; stroke-dasharray:453,1000"/>
|
||||
|
||||
<!-- Bottom banner -->
|
||||
<rect x="0" y="280" width="900" height="40" fill="#f6f8fa"
|
||||
stroke="#529d86" stroke-width="3" rx="10" ry="10"
|
||||
style="stroke-linejoin:round; stroke-dasharray:0,280,900,0"/>
|
||||
</g>
|
||||
|
||||
<!-- Community Edition Content -->
|
||||
<g>
|
||||
<!-- Title with emoji -->
|
||||
<text x="225" y="40" font-family="Arial, sans-serif" font-size="22" font-weight="bold"
|
||||
text-anchor="middle" fill="#3d7b6b">
|
||||
🔓 Community Edition
|
||||
</text>
|
||||
|
||||
<!-- Subtitle -->
|
||||
<text x="225" y="60" font-family="Arial, sans-serif" font-size="12" font-weight="bold"
|
||||
text-anchor="middle" fill="#529d86">
|
||||
Research & Learning · Perfect for Researchers & Students
|
||||
</text>
|
||||
|
||||
<!-- Code block -->
|
||||
<rect x="80" y="80" width="290" height="35" fill="url(#codeBlockBg)"
|
||||
stroke="#529d86" stroke-width="1" rx="6" ry="6"/>
|
||||
<text x="225" y="102" font-family="'Courier New', monospace" font-size="14"
|
||||
text-anchor="middle" fill="#2d5a4d">
|
||||
pip install cai-framework
|
||||
</text>
|
||||
|
||||
<!-- Feature list -->
|
||||
<text x="145" y="145" font-family="Arial, sans-serif" font-size="14" fill="#2d2d2d">
|
||||
✅ <tspan font-weight="bold" fill="#529d86">Free</tspan> for research
|
||||
</text>
|
||||
<text x="145" y="165" font-family="Arial, sans-serif" font-size="14" fill="#2d2d2d">
|
||||
🤖 <tspan font-weight="bold" fill="#529d86">300+</tspan> AI models
|
||||
</text>
|
||||
<text x="145" y="185" font-family="Arial, sans-serif" font-size="14" fill="#2d2d2d">
|
||||
🌍 <tspan font-weight="bold" fill="#529d86">Community</tspan> driven
|
||||
</text>
|
||||
<text x="145" y="205" font-family="Arial, sans-serif" font-size="14" fill="#2d2d2d">
|
||||
📚 <tspan font-weight="bold" fill="#529d86">Open</tspan> source
|
||||
</text>
|
||||
<text x="145" y="225" font-family="Arial, sans-serif" font-size="14" fill="#2d2d2d">
|
||||
🔧 <tspan font-weight="bold" fill="#529d86">Extensible</tspan> framework
|
||||
</text>
|
||||
</g>
|
||||
|
||||
<!-- Professional Edition Content -->
|
||||
<g>
|
||||
<!-- Title with emoji and shadow -->
|
||||
<text x="673" y="40" font-family="Arial, sans-serif" font-size="22" font-weight="bold"
|
||||
text-anchor="middle" fill="#ffffff" filter="url(#textShadow)">
|
||||
🚀 Professional Edition
|
||||
</text>
|
||||
|
||||
<!-- Subtitle with inline code style for alias1 -->
|
||||
<text x="673" y="60" font-family="Arial, sans-serif" font-size="12" font-weight="bold"
|
||||
text-anchor="middle" fill="#e8f5f1">
|
||||
Enterprise & Production · €350/month · Unlimited
|
||||
<tspan fill="#ffffff" font-family="'Courier New', monospace"
|
||||
style="background:rgba(255,255,255,0.2)">alias1</tspan> Tokens
|
||||
</text>
|
||||
|
||||
<!-- Button with gradient and shadow -->
|
||||
<g filter="url(#buttonShadow)">
|
||||
<rect x="573" y="80" width="200" height="35" fill="url(#buttonBg)"
|
||||
stroke="#ffffff" stroke-width="2" rx="6" ry="6"/>
|
||||
<text x="673" y="102" font-family="'Courier New', monospace" font-size="14" font-weight="bold"
|
||||
text-anchor="middle" fill="#529d86">
|
||||
→ Upgrade to PRO
|
||||
</text>
|
||||
</g>
|
||||
|
||||
<!-- Feature list -->
|
||||
<text x="580" y="145" font-family="Arial, sans-serif" font-size="14" fill="#ffffff">
|
||||
⚡ <tspan font-weight="bold">alias1</tspan> model - ∞ unlimited tokens
|
||||
</text>
|
||||
<text x="580" y="165" font-family="Arial, sans-serif" font-size="14" fill="#ffffff">
|
||||
🚫 <tspan font-weight="bold">Zero refusals</tspan> - Unrestricted AI
|
||||
</text>
|
||||
<text x="580" y="185" font-family="Arial, sans-serif" font-size="14" fill="#ffffff">
|
||||
🏆 <tspan font-weight="bold">Beats GPT-5</tspan> in CTF benchmarks
|
||||
</text>
|
||||
<text x="580" y="205" font-family="Arial, sans-serif" font-size="14" fill="#ffffff">
|
||||
🛡️ <tspan font-weight="bold">Professional</tspan> support included
|
||||
</text>
|
||||
<text x="580" y="225" font-family="Arial, sans-serif" font-size="14" fill="#ffffff">
|
||||
🇪🇺 <tspan font-weight="bold">European</tspan> data sovereignty
|
||||
</text>
|
||||
</g>
|
||||
|
||||
<!-- Bottom banner text -->
|
||||
<text x="450" y="305" font-family="Arial, sans-serif" font-size="11" font-style="italic"
|
||||
text-anchor="middle" fill="#666666">
|
||||
CAI PRO w/ <tspan font-family="'Courier New', monospace">alias1</tspan> model outperforms GPT-5 in AI vs AI cybersecurity benchmarks |
|
||||
<tspan fill="#529d86" text-decoration="underline">View Full Benchmarks →</tspan>
|
||||
</text>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.3 KiB |
Loading…
Reference in New Issue