chore: update FUN-Codex and FUN-Claude provider models (#522)
FUN-Codex: add GPT models (5.5, 5.4, 5.4-mini, 5.3-codex, 5.3-codex-spark) FUN-Claude: replace with actual Claude models from API (opus-4-7 down to 3-5-haiku) Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -18,7 +18,10 @@ onMounted(() => {
|
||||
}
|
||||
})
|
||||
|
||||
const isCustom = (provider: string) => provider.startsWith('custom:')
|
||||
const isCustom = (provider: string) => {
|
||||
const g = modelsStore.providers.find(p => p.provider === provider)
|
||||
return !g?.builtin && provider.startsWith('custom:')
|
||||
}
|
||||
|
||||
function getEditKey(provider: string): string {
|
||||
if (!(provider in editKeys.value)) {
|
||||
|
||||
Reference in New Issue
Block a user