Runs the same content check but surfaces the full per-category score map as the primary output, ranked by confidence. Use this when you want to apply your own thresholds per category or sort a review queue by risk level rather than acting on the default flag.
You want to set your own per-category thresholds or rank a queue by confidence, not trust one flag.
A simple yes-or-no check where the default verdict is enough.
0.1 credits / check
Set these inside the intent when you run it.
Text content to score. Provide text, an image URL, or both.
A publicly reachable URL of an image to score alongside or instead of text.
The full per-category calibrated score map (0 to 1) ranked by confidence, alongside the overall flag, so you can apply your own thresholds.
Run this sub-skill directly: pin it with operation and pass its inputs in the intent. (Omit operation and the Content Moderation skill will route from your intent instead.)
curl -X POST "https://skill.askfaro.com/skills/content-moderation/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"operation":"triage","text":"This content might be borderline -- score it for me.","image_url":"https://example.com/review/image.jpg"}}'Example requests