update MiniMax-M2

This commit is contained in:
tianyufan
2025-10-28 21:17:43 +08:00
parent d2b18e4939
commit de59b006b7
23 changed files with 194 additions and 0 deletions

32
docs/figs/minimax.svg Normal file
View File

@@ -0,0 +1,32 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<defs>
<linearGradient id="minimaxGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#E91E63;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF6B3D;stop-opacity:1" />
</linearGradient>
</defs>
<!-- Background -->
<rect width="100" height="100" rx="8" fill="url(#minimaxGradient)"/>
<!-- MiniMax waveform logo -->
<g transform="translate(50, 35)" stroke="white" stroke-width="4" fill="none" stroke-linecap="round" stroke-linejoin="round">
<!-- Left small wave -->
<path d="M -20,8 L -20,0 L -20,-8" />
<!-- Left tall wave -->
<path d="M -10,15 L -10,0 L -10,-15" />
<!-- Center tall wave -->
<path d="M 0,18 L 0,0 L 0,-18" />
<!-- Right tall wave -->
<path d="M 10,15 L 10,0 L 10,-15" />
<!-- Right small wave -->
<path d="M 20,8 L 20,0 L 20,-8" />
</g>
<!-- MINIMAX text -->
<text x="50" y="70" font-family="Arial, sans-serif" font-size="12" font-weight="bold" fill="white" text-anchor="middle">MINIMAX</text>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB