zerogpt API di rilevamento dell'IA
L'API zerogpt o il rilevatore ChatGPT è un'API progettata per rilevare se un dato testo è stato generato da un modello di linguaggio GPT o scritto da un umano. Utilizza diverse tecniche di elaborazione del linguaggio naturale per analizzare il testo e identificare i modelli e le caratteristiche tipiche dei contenuti generati da GPT. L'API può essere integrata in diverse applicazioni e sistemi per aiutare a identificare e filtrare i contenuti potenzialmente ingannevoli o dannosi generati da modelli GPT.
Overview:
API Endpoint: /api/v1/detectText
HTTP Method: POST
Request Body:
The request body is a JSON object that contains a single field "input_text", which represents the text that needs to be analyzed for ChatGPT generation.
{
"input_text": "Hello, how are you today?"
}
Response Body:
{
"success": true,
"data": {
"is_human_written": 0,
"is_gpt_generated": 100,
"feedback_message": "Please input more text for a more accurate result",
"gpt_generated_sentences": [],
"words_count": 75
}
}
HTTP Status Codes:
200 OK: The request was successful and the response body contains the detection results.
400 Bad Request: The request is missing required fields or has invalid data in the request body.