Fix: Align part of Go provider APIs with Python APIs (#16823)

This commit is contained in:
Lynn
2026-07-13 11:20:02 +08:00
committed by GitHub
parent 3c0f8fc192
commit b0cac0ac9d
10 changed files with 498 additions and 21 deletions

View File

@@ -141,3 +141,11 @@ func ModelTypeFromStrings(types []string) ModelType {
}
return result
}
// ModelVerifyStatus mirrors Python's ModelVerifyStatusEnum
// (common/constants.py).
const (
ModelVerifySuccess = "success"
ModelVerifyFail = "fail"
ModelVerifyUnknown = "unknown"
)