Skip to content

Commit

Permalink
feat(Endpoints): Update analyze endpoint response
Browse files Browse the repository at this point in the history
The analyze endpoint response has been updated to remove certain models and their corresponding scores. The removed models include Threat, Profanity, Inflammatory, Insult, Obscene, IdentityAttack, Spam, and SexuallyExplicit. This change was made to streamline the response and provide more relevant information to the user.
  • Loading branch information
BillChirico committed Nov 18, 2023
1 parent 24952fa commit 380bc7c
Showing 1 changed file with 0 additions and 32 deletions.
32 changes: 0 additions & 32 deletions docs/endpoints/analyze.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,45 +46,13 @@ curl https://apollo.volvox.tech/api/analyze -X POST
"model": "Toxicity",
"score": 84.03
},
{
"model": "Threat",
"score": 79.41
},
{
"model": "Flirtation",
"score": 52.94
},
{
"model": "SevereToxicity",
"score": 44.79
},
{
"model": "Profanity",
"score": 33.95
},
{
"model": "Inflammatory",
"score": 31.52
},
{
"model": "Insult",
"score": 30.33
},
{
"model": "Obscene",
"score": 16.84
},
{
"model": "IdentityAttack",
"score": 6.52
},
{
"model": "Spam",
"score": 4.38
},
{
"model": "SexuallyExplicit",
"score": 4.17
}
]
```

0 comments on commit 380bc7c

Please sign in to comment.