mirror of
https://github.com/OpenHands/OpenHands.git
synced 2026-03-22 05:37:20 +08:00
Add MiniMax-M2.5 model support (#12835)
Co-authored-by: openhands <openhands@all-hands.dev>
This commit is contained in:
@@ -8,28 +8,17 @@ export const VERIFIED_PROVIDERS = [
|
|||||||
"clarifai",
|
"clarifai",
|
||||||
];
|
];
|
||||||
export const VERIFIED_MODELS = [
|
export const VERIFIED_MODELS = [
|
||||||
"o3-mini-2025-01-31",
|
|
||||||
"o3-2025-04-16",
|
|
||||||
"o3",
|
|
||||||
"o4-mini-2025-04-16",
|
|
||||||
"claude-3-5-sonnet-20241022",
|
|
||||||
"claude-3-7-sonnet-20250219",
|
|
||||||
"claude-sonnet-4-20250514",
|
|
||||||
"claude-sonnet-4-5-20250929",
|
|
||||||
"claude-haiku-4-5-20251001",
|
|
||||||
"claude-opus-4-20250514",
|
|
||||||
"claude-opus-4-1-20250805",
|
|
||||||
"claude-opus-4-5-20251101",
|
"claude-opus-4-5-20251101",
|
||||||
"gemini-2.5-pro",
|
"claude-sonnet-4-5-20250929",
|
||||||
"o4-mini",
|
"gpt-5.2-codex",
|
||||||
|
"gpt-5.2",
|
||||||
|
"MiniMax-M2.5",
|
||||||
|
"gemini-3-pro-preview",
|
||||||
|
"gemini-3-flash-preview",
|
||||||
"deepseek-chat",
|
"deepseek-chat",
|
||||||
"devstral-small-2505",
|
"devstral-medium-2512",
|
||||||
"devstral-small-2507",
|
|
||||||
"devstral-medium-2507",
|
|
||||||
"kimi-k2-0711-preview",
|
"kimi-k2-0711-preview",
|
||||||
"qwen3-coder-480b",
|
"qwen3-coder-480b",
|
||||||
"gpt-5.2",
|
|
||||||
"gpt-5.2-codex",
|
|
||||||
];
|
];
|
||||||
|
|
||||||
// LiteLLM does not return OpenAI models with the provider, so we list them here to set them ourselves for consistency
|
// LiteLLM does not return OpenAI models with the provider, so we list them here to set them ourselves for consistency
|
||||||
@@ -39,55 +28,36 @@ export const VERIFIED_OPENAI_MODELS = [
|
|||||||
"gpt-5.2-codex",
|
"gpt-5.2-codex",
|
||||||
"gpt-4o",
|
"gpt-4o",
|
||||||
"gpt-4o-mini",
|
"gpt-4o-mini",
|
||||||
"gpt-4.1",
|
|
||||||
"gpt-4.1-2025-04-14",
|
|
||||||
"o3",
|
|
||||||
"o3-2025-04-16",
|
|
||||||
"o4-mini",
|
|
||||||
"o4-mini-2025-04-16",
|
|
||||||
"codex-mini-latest",
|
|
||||||
];
|
];
|
||||||
|
|
||||||
// LiteLLM does not return the compatible Anthropic models with the provider, so we list them here to set them ourselves
|
// LiteLLM does not return the compatible Anthropic models with the provider, so we list them here to set them ourselves
|
||||||
// (e.g., they return `claude-3-5-sonnet-20241022` instead of `anthropic/claude-3-5-sonnet-20241022`)
|
// (e.g., they return `claude-3-5-sonnet-20241022` instead of `anthropic/claude-3-5-sonnet-20241022`)
|
||||||
export const VERIFIED_ANTHROPIC_MODELS = [
|
export const VERIFIED_ANTHROPIC_MODELS = [
|
||||||
|
"claude-opus-4-5-20251101",
|
||||||
|
"claude-sonnet-4-5-20250929",
|
||||||
"claude-3-5-sonnet-20240620",
|
"claude-3-5-sonnet-20240620",
|
||||||
"claude-3-5-sonnet-20241022",
|
"claude-3-5-sonnet-20241022",
|
||||||
"claude-3-5-haiku-20241022",
|
|
||||||
"claude-3-7-sonnet-20250219",
|
"claude-3-7-sonnet-20250219",
|
||||||
"claude-sonnet-4-20250514",
|
"claude-sonnet-4-20250514",
|
||||||
"claude-sonnet-4-5-20250929",
|
|
||||||
"claude-haiku-4-5-20251001",
|
|
||||||
"claude-opus-4-20250514",
|
"claude-opus-4-20250514",
|
||||||
"claude-opus-4-1-20250805",
|
"claude-opus-4-1-20250805",
|
||||||
"claude-opus-4-5-20251101",
|
|
||||||
];
|
];
|
||||||
|
|
||||||
// LiteLLM does not return the compatible Mistral models with the provider, so we list them here to set them ourselves
|
// LiteLLM does not return the compatible Mistral models with the provider, so we list them here to set them ourselves
|
||||||
// (e.g., they return `devstral-small-2505` instead of `mistral/devstral-small-2505`)
|
// (e.g., they return `devstral-small-2505` instead of `mistral/devstral-small-2505`)
|
||||||
export const VERIFIED_MISTRAL_MODELS = [
|
export const VERIFIED_MISTRAL_MODELS = ["devstral-medium-2512"];
|
||||||
"devstral-small-2507",
|
|
||||||
"devstral-medium-2507",
|
|
||||||
"devstral-small-2505",
|
|
||||||
];
|
|
||||||
|
|
||||||
// LiteLLM does not return the compatible OpenHands models with the provider, so we list them here to set them ourselves
|
// LiteLLM does not return the compatible OpenHands models with the provider, so we list them here to set them ourselves
|
||||||
// (e.g., they return `claude-sonnet-4-20250514` instead of `openhands/claude-sonnet-4-20250514`)
|
// (e.g., they return `claude-sonnet-4-20250514` instead of `openhands/claude-sonnet-4-20250514`)
|
||||||
export const VERIFIED_OPENHANDS_MODELS = [
|
export const VERIFIED_OPENHANDS_MODELS = [
|
||||||
"claude-sonnet-4-20250514",
|
|
||||||
"claude-sonnet-4-5-20250929",
|
|
||||||
"claude-haiku-4-5-20251001",
|
|
||||||
"gpt-5.2",
|
|
||||||
"gpt-5.2-codex",
|
|
||||||
"claude-opus-4-20250514",
|
|
||||||
"claude-opus-4-1-20250805",
|
|
||||||
"claude-opus-4-5-20251101",
|
"claude-opus-4-5-20251101",
|
||||||
"gemini-2.5-pro",
|
"claude-sonnet-4-5-20250929",
|
||||||
"o3",
|
"gpt-5.2-codex",
|
||||||
"o4-mini",
|
"gpt-5.2",
|
||||||
"devstral-small-2507",
|
"MiniMax-M2.5",
|
||||||
"devstral-medium-2507",
|
"gemini-3-pro-preview",
|
||||||
"devstral-small-2505",
|
"gemini-3-flash-preview",
|
||||||
|
"devstral-medium-2512",
|
||||||
"kimi-k2-0711-preview",
|
"kimi-k2-0711-preview",
|
||||||
"qwen3-coder-480b",
|
"qwen3-coder-480b",
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -111,18 +111,15 @@ def get_supported_llm_models(config: OpenHandsConfig) -> list[str]:
|
|||||||
|
|
||||||
# Add OpenHands provider models
|
# Add OpenHands provider models
|
||||||
openhands_models = [
|
openhands_models = [
|
||||||
'openhands/claude-sonnet-4-20250514',
|
|
||||||
'openhands/claude-sonnet-4-5-20250929',
|
|
||||||
'openhands/gpt-5-2025-08-07',
|
|
||||||
'openhands/gpt-5-mini-2025-08-07',
|
|
||||||
'openhands/claude-opus-4-20250514',
|
|
||||||
'openhands/claude-opus-4-5-20251101',
|
'openhands/claude-opus-4-5-20251101',
|
||||||
'openhands/gemini-2.5-pro',
|
'openhands/claude-sonnet-4-5-20250929',
|
||||||
'openhands/o3',
|
'openhands/gpt-5.2-codex',
|
||||||
'openhands/o4-mini',
|
'openhands/gpt-5.2',
|
||||||
'openhands/devstral-small-2505',
|
'openhands/MiniMax-M2.5',
|
||||||
'openhands/devstral-small-2507',
|
'openhands/gemini-3-pro-preview',
|
||||||
'openhands/devstral-medium-2507',
|
'openhands/gemini-3-flash-preview',
|
||||||
|
'openhands/deepseek-chat',
|
||||||
|
'openhands/devstral-medium-2512',
|
||||||
'openhands/kimi-k2-0711-preview',
|
'openhands/kimi-k2-0711-preview',
|
||||||
'openhands/qwen3-coder-480b',
|
'openhands/qwen3-coder-480b',
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user