|
| 1 | +--- |
| 2 | +sidebar_position: 2 |
| 3 | +title: Get Models |
| 4 | +description: Get all models that can be used by Volvox.Apollo |
| 5 | +slug: /endpoints/get-models |
| 6 | +--- |
| 7 | + |
| 8 | +# Get Models Endpoint |
| 9 | +Using this endpoint will return all of the models that are available for you to analyze against. They include the `displayName`, `name`, and `description`. |
| 10 | + |
| 11 | +To get all of the models, all you have to do is send a `GET` request to the following endpoint: |
| 12 | +``` |
| 13 | +https://apollo.volvox.tech/api/analyze/models |
| 14 | +``` |
| 15 | + |
| 16 | +### Example Request |
| 17 | +```json |
| 18 | +curl 'https://apollo.volvox.tech/api/Analyzer/Models' |
| 19 | +``` |
| 20 | + |
| 21 | +### Example Response |
| 22 | +```json |
| 23 | +[ |
| 24 | + { |
| 25 | + "id": 1, |
| 26 | + "displayName": "Toxicity", |
| 27 | + "name": "Toxicity", |
| 28 | + "description": "Attitudes or patterns of conduct that are harmful, negative, or detrimental to individuals, relationships, or social dynamics." |
| 29 | + }, |
| 30 | + { |
| 31 | + "id": 2, |
| 32 | + "displayName": "Severe Toxicity", |
| 33 | + "name": "SevereToxicity", |
| 34 | + "description": "A highly detrimental and harmful category of attitudes or conduct that can have profoundly negative impacts on individuals and their surroundings, including abusive behaviors." |
| 35 | + }, |
| 36 | + { |
| 37 | + "id": 3, |
| 38 | + "displayName": "Identity Attack", |
| 39 | + "name": "IdentityAttack", |
| 40 | + "description": "The intent to harm someone's reputation by making false statements or spreading false information about them, whether in spoken form (slander) or written form (libel)." |
| 41 | + }, |
| 42 | + { |
| 43 | + "id": 4, |
| 44 | + "displayName": "Insult", |
| 45 | + "name": "Insult", |
| 46 | + "description": "Words that are deliberately offensive, disrespectful, or hurtful towards someone else. Such behavior may involve personal attacks, derogatory comments, or mocking gestures intended to demean or belittle the individual." |
| 47 | + }, |
| 48 | + { |
| 49 | + "id": 5, |
| 50 | + "displayName": "Profanity", |
| 51 | + "name": "Profanity", |
| 52 | + "description": "Words or expressions that are vulgar, irreverent, or disrespectful. These words are typically in violation of societal norms, cultural values, or religious beliefs. This behavior often involves the use of obscene and offensive language or gestures that may shock or offend others." |
| 53 | + }, |
| 54 | + { |
| 55 | + "id": 6, |
| 56 | + "displayName": "Threat", |
| 57 | + "name": "Threat", |
| 58 | + "description": "Expressions that convey a clear intent to harm or intimidate someone physically, emotionally, or psychologically. This behavior can take many forms, including verbal threats, gestures, or written messages." |
| 59 | + }, |
| 60 | + { |
| 61 | + "id": 7, |
| 62 | + "displayName": "Sexually Explicit", |
| 63 | + "name": "SexuallyExplicit", |
| 64 | + "description": "Content or behaviors that are sexually suggestive, graphic, or explicit in nature." |
| 65 | + }, |
| 66 | + { |
| 67 | + "id": 8, |
| 68 | + "displayName": "Flirtation", |
| 69 | + "name": "Flirtation", |
| 70 | + "description": "Words or gestures that are often romantic or sexually suggestive in nature. This could include pickup lines, complimenting appearances, and sexual innuendos." |
| 71 | + }, |
| 72 | + { |
| 73 | + "id": 9, |
| 74 | + "displayName": "Inflammatory", |
| 75 | + "name": "Inflammatory", |
| 76 | + "description": "Statements or content that are intentionally provocative, offensive, or designed to incite anger, resentment, or conflict in others." |
| 77 | + }, |
| 78 | + { |
| 79 | + "id": 10, |
| 80 | + "displayName": "Obscene", |
| 81 | + "name": "Obscene", |
| 82 | + "description": "Conduct or content that is considered extremely offensive, indecent, or morally repugnant, typically in violation of societal norms." |
| 83 | + }, |
| 84 | + { |
| 85 | + "id": 11, |
| 86 | + "displayName": "Spam", |
| 87 | + "name": "Spam", |
| 88 | + "description": "Unsolicited, irrelevant or repetitive messages, content, or communications sent in bulk. These messages are typically sent via email, instant messaging, or other digital communication channels." |
| 89 | + } |
| 90 | +] |
| 91 | +``` |
0 commit comments