mirror of
https://github.com/Xe138/AI-Trader.git
synced 2026-04-08 19:57:24 -04:00
update MiniMax-M2
This commit is contained in:
@@ -17,6 +17,7 @@ class DataLoader {
|
||||
const potentialAgents = [
|
||||
'gemini-2.5-flash',
|
||||
'qwen3-max',
|
||||
'MiniMax-M2',
|
||||
'deepseek-chat-v3.1',
|
||||
'gpt-5',
|
||||
'claude-3.7-sonnet',
|
||||
@@ -351,6 +352,7 @@ class DataLoader {
|
||||
const names = {
|
||||
'gemini-2.5-flash': 'Gemini-2.5-flash',
|
||||
'qwen3-max': 'Qwen3-max',
|
||||
'MiniMax-M2': 'MiniMax-M2',
|
||||
'gpt-5': 'GPT-5',
|
||||
'deepseek-chat-v3.1': 'DeepSeek-v3.1',
|
||||
'claude-3.7-sonnet': 'Claude 3.7 Sonnet',
|
||||
@@ -364,6 +366,7 @@ class DataLoader {
|
||||
const icons = {
|
||||
'gemini-2.5-flash': './figs/google.svg',
|
||||
'qwen3-max': './figs/qwen.svg',
|
||||
'MiniMax-M2': './figs/minimax.svg',
|
||||
'gpt-5': './figs/openai.svg',
|
||||
'claude-3.7-sonnet': './figs/claude-color.svg',
|
||||
'deepseek-chat-v3.1': './figs/deepseek.svg',
|
||||
@@ -377,6 +380,7 @@ class DataLoader {
|
||||
// 处理可能的版本号变体
|
||||
if (agentName.includes('gemini')) return 'gemini-2.5-flash';
|
||||
if (agentName.includes('qwen')) return 'qwen3-max';
|
||||
if (agentName.includes('MiniMax')) return 'MiniMax-M2';
|
||||
if (agentName.includes('gpt')) return 'gpt-5';
|
||||
if (agentName.includes('claude')) return 'claude-3.7-sonnet';
|
||||
if (agentName.includes('deepseek')) return 'deepseek-chat-v3.1';
|
||||
@@ -388,6 +392,7 @@ class DataLoader {
|
||||
const colors = {
|
||||
'gemini-2.5-flash': '#8A2BE2', // Google purple
|
||||
'qwen3-max': '#0066ff', // Qwen Blue
|
||||
'MiniMax-M2': '#ff0000', // MiniMax Red
|
||||
'gpt-5': '#10a37f', // OpenAI Green
|
||||
'deepseek-chat-v3.1': '#4a90e2', // DeepSeek Blue
|
||||
'claude-3.7-sonnet': '#cc785c', // Anthropic Orange
|
||||
|
||||
32
docs/figs/minimax.svg
Normal file
32
docs/figs/minimax.svg
Normal 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 |
Reference in New Issue
Block a user