##⚠️Deprecated⚠️
This app is deprecated and will no longer be maintained.
Nextcloud GPTZero integration to detect AI-generated content
It allows to send text or files to GPTZero API and detect if the content is generated by an AI.
Negative:
Learn more about the Nextcloud Ethical AI Rating in our blog.
Possible results are:
Formula to detect generated content is:
if X < completely_generated_prob.min:
if average_generated_prob <= Y:
return `Most likely written by a Human`
return `May include parts written by an AI`
else if X > completely_generated_prob.max:
if average_generated_prob <= Y:
return `May include parts written by an AI`
return `Most likely generated by an AI`
else:
if average_generated_prob <= Y:
return `Unknown really`
return `May include parts written by an AI`
No comments found.