Refactored variable name from
DalleGenerationImageAmountRatios to DalleGenerationImageAmounts
This commit is contained in:
parent
6f5655ec7a
commit
29fbd12870
@ -19,7 +19,7 @@ var DalleSizeRatios = map[string]map[string]float64{
|
||||
}
|
||||
|
||||
// Array in values, of maxmium and minimum
|
||||
var DalleGenerationImageAmountRatios = map[string][2]int{
|
||||
var DalleGenerationImageAmounts = map[string][2]int{
|
||||
"dall-e-2": {1, 10},
|
||||
"dall-e-3": {1, 1}, // OpenAI allows n=1 currently.
|
||||
}
|
||||
|
@ -15,12 +15,12 @@ import (
|
||||
)
|
||||
|
||||
func isWithinRange(element string, value int) bool {
|
||||
if _, ok := common.DalleGenerationImageAmountRatios[element]; !ok {
|
||||
if _, ok := common.DalleGenerationImageAmounts[element]; !ok {
|
||||
return false
|
||||
}
|
||||
|
||||
min := common.DalleGenerationImageAmountRatios[element][0]
|
||||
max := common.DalleGenerationImageAmountRatios[element][1]
|
||||
min := common.DalleGenerationImageAmounts[element][0]
|
||||
max := common.DalleGenerationImageAmounts[element][1]
|
||||
|
||||
return value >= min && value <= max
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user