chore(cli): make sonnet first in openhands provider model choice (#9719)

This commit is contained in:
Xingyao Wang 2025-07-15 13:38:08 -04:00 committed by GitHub
parent 1d04a83e08
commit 9a3bf0f2aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -49,9 +49,9 @@ export const VERIFIED_ANTHROPIC_MODELS = [
// 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`)
export const VERIFIED_MISTRAL_MODELS = [
"devstral-small-2505",
"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
@ -61,9 +61,9 @@ export const VERIFIED_OPENHANDS_MODELS = [
"claude-opus-4-20250514",
"gemini-2.5-pro",
"o4-mini",
"devstral-small-2505",
"devstral-small-2507",
"devstral-medium-2507",
"devstral-small-2505",
];
// Default model for OpenHands provider

View File

@ -182,11 +182,11 @@ VERIFIED_MISTRAL_MODELS = [
]
VERIFIED_OPENHANDS_MODELS = [
'claude-sonnet-4-20250514',
'claude-opus-4-20250514',
'devstral-small-2507',
'devstral-medium-2507',
'o4-mini',
'claude-sonnet-4-20250514',
'gemini-2.5-pro',
]