gptzero_detect
Analyze text to detect AI-generated content and get probability scores for AI, human, or mixed authorship with multilingual support.
Instructions
Detect if text was generated by AI. Returns probability scores for AI, human, and mixed content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
document | Yes | The text document you want to analyze for AI detection | |
multilingual | No | Enable multilingual detection (supports French and Spanish) |
Input Schema (JSON Schema)
{
"properties": {
"document": {
"description": "The text document you want to analyze for AI detection",
"type": "string"
},
"multilingual": {
"default": false,
"description": "Enable multilingual detection (supports French and Spanish)",
"type": "boolean"
}
},
"required": [
"document"
],
"type": "object"
}