Update GLM Code Conservator graphics to match style

This commit is contained in:
Gemini AI
2025-12-11 12:50:42 +04:00
Unverified
parent 25c641cd79
commit 63ceab57fe

View File

@@ -1,21 +1,29 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 250"> <svg width="700" height="150" viewBox="0 0 700 150" xmlns="http://www.w3.org/2000/svg">
<defs> <defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"> <linearGradient id="grad_glm" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#FF512F;stop-opacity:1" /> <stop offset="0%" style="stop-color:#9013fe;stop-opacity:1" />
<stop offset="100%" style="stop-color:#DD2476;stop-opacity:1" /> <stop offset="100%" style="stop-color:#bd10e0;stop-opacity:1" />
</linearGradient> </linearGradient>
<filter id="shadow"> <pattern id="grid_glm" width="20" height="20" patternUnits="userSpaceOnUse">
<feDropShadow dx="0" dy="4" stdDeviation="4" flood-opacity="0.25"/> <path d="M 20 0 L 0 0 0 20" fill="none" stroke="#ffffff" stroke-width="0.5" stroke-opacity="0.1"/>
</filter> </pattern>
</defs> </defs>
<rect width="400" height="250" rx="20" fill="#1a1a1a" />
<rect x="10" y="10" width="380" height="230" rx="15" fill="none" stroke="url(#grad1)" stroke-width="4" />
<g transform="translate(150, 60)"> <!-- Dark Background -->
<path d="M50 0 L93.3 25 V75 L50 100 L6.7 75 V25 Z" fill="url(#grad1)" filter="url(#shadow)" opacity="0.9" /> <rect width="700" height="150" fill="#050510" rx="15" ry="15"/>
<path d="M50 20 L50 80 M25 35 L75 35 M35 65 L65 65" stroke="white" stroke-width="4" stroke-linecap="round" /> <!-- Grid Overlay -->
</g> <rect width="700" height="150" fill="url(#grid_glm)" rx="15" ry="15"/>
<text x="50%" y="200" dominant-baseline="middle" text-anchor="middle" font-family="Arial, sans-serif" font-weight="bold" font-size="24" fill="white">CODE CONSERVATOR</text> <!-- Neon Border -->
<text x="50%" y="225" dominant-baseline="middle" text-anchor="middle" font-family="Arial, sans-serif" font-size="14" fill="#cccccc">GLM 4.6 SAFETY</text> <rect x="2" y="2" width="696" height="146" fill="none" stroke="url(#grad_glm)" stroke-width="3" rx="12" ry="12"/>
<!-- Title -->
<text x="350" y="50" font-family="Arial, sans-serif" font-size="28" fill="#ffffff" text-anchor="middle" font-weight="bold" letter-spacing="1">GLM CODE CONSERVATOR</text>
<!-- Description -->
<text x="350" y="80" font-family="Arial, sans-serif" font-size="14" fill="#cccccc" text-anchor="middle">Agent's goal: Attempt allowing GLM 4.6 model operate on an existing code of other models without breaking it.</text>
<text x="350" y="100" font-family="Arial, sans-serif" font-size="14" fill="#cccccc" text-anchor="middle">Always test deeply, and create back up/git commits prior to any work with an agent.</text>
<!-- Footer Tag -->
<text x="680" y="135" font-family="Arial, sans-serif" font-size="10" fill="url(#grad_glm)" text-anchor="end" font-weight="bold" style="text-transform: uppercase;">TRAE Custom Engineered Agent</text>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB