porting all github actions from bluesky-social/indigo to tangled CI

experiment with higher underwear threshold

Changed files
+3 -1
automod
+3 -1
automod/visual/hiveai_client.go
··· 140 140 // then finally flag remaining "underwear" images in to sexually suggestive 141 141 // (after non-sexual content already labeled above) 142 142 for _, underwearClass := range []string{"yes_male_underwear", "yes_female_underwear"} { 143 - if scores[underwearClass] >= threshold { 143 + // TODO: experimenting with higher threshhold during traffic spike 144 + //if scores[underwearClass] >= threshold { 145 + if scores[underwearClass] >= 0.98 { 144 146 return "sexual" 145 147 } 146 148 }