Add kimi-k2-0711-preview model to OpenHands provider (#9755)

Co-authored-by: openhands <openhands@all-hands.dev>
This commit is contained in:
Xingyao Wang 2025-07-17 07:25:31 -04:00 committed by GitHub
parent 4f46826de9
commit eed71c21bd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 0 deletions

View File

@ -20,6 +20,7 @@ export const VERIFIED_MODELS = [
"devstral-small-2505",
"devstral-small-2507",
"devstral-medium-2507",
"kimi-k2-0711-preview",
];
// LiteLLM does not return OpenAI models with the provider, so we list them here to set them ourselves for consistency
@ -66,6 +67,7 @@ export const VERIFIED_OPENHANDS_MODELS = [
"devstral-small-2507",
"devstral-medium-2507",
"devstral-small-2505",
"kimi-k2-0711-preview",
];
// Default model for OpenHands provider

View File

@ -189,6 +189,7 @@ VERIFIED_OPENHANDS_MODELS = [
'o3',
'o4-mini',
'gemini-2.5-pro',
'kimi-k2-0711-preview',
]

View File

@ -63,6 +63,7 @@ def get_supported_llm_models(config: OpenHandsConfig) -> list[str]:
'openhands/devstral-small-2505',
'openhands/devstral-small-2507',
'openhands/devstral-medium-2507',
'openhands/kimi-k2-0711-preview',
]
model_list = openhands_models + model_list