curl -X POST https://api.woolball.xyz/v1/zero-shot-classification \ -H "Authorization: Bearer <YOUR_API_KEY>" \ -H "Content-Type: application/json" \ -d '{ "Text": "The movie was great, I really enjoyed it!", "CandidateLabels": ["positive", "negative", "neutral"] }'
{ "data": { "labels": ["positive", "negative", "neutral"], "scores": [0.92, 0.05, 0.03] } }
Classify text without training using zero-shot learning
Show Properties