feat: vertex veo (#1450)

This commit is contained in:
Sh1n3zZ
2025-08-27 18:06:47 +08:00
parent f249cf9acc
commit cf8b021b61
11 changed files with 534 additions and 15 deletions
+4 -1
View File
@@ -12,7 +12,10 @@ func GetModelRegion(other string, localModelName string) string {
if m[localModelName] != nil {
return m[localModelName].(string)
} else {
return m["default"].(string)
if v, ok := m["default"]; ok {
return v.(string)
}
return "global"
}
}
return other