Merge pull request #5998 from dupl/main

Use regular expressions to make the code more concise.
This commit is contained in:
Dogtiti 2024-12-29 00:22:13 +08:00 committed by GitHub
commit c0062ff280
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -305,9 +305,7 @@ export const VISION_MODEL_REGEXES = [
/qwen2-vl/,
/gpt-4-turbo(?!.*preview)/, // Matches "gpt-4-turbo" but not "gpt-4-turbo-preview"
/^dall-e-3$/, // Matches exactly "dall-e-3"
/glm-4v-plus/,
/glm-4v/,
/glm-4v-flash/,
];
export const EXCLUDE_VISION_MODEL_REGEXES = [/claude-3-5-haiku-20241022/];