From c860824cfc714a49937e7512caf50a846a9550d5 Mon Sep 17 00:00:00 2001 From: Tyler Diorio <109099227+TylerDiorio@users.noreply.github.com> Date: Mon, 9 Dec 2024 15:34:23 -0700 Subject: [PATCH] Add new flag for AI Abuse --- components/Flag/config/flag_constants.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/Flag/config/flag_constants.ts b/components/Flag/config/flag_constants.ts index 2cda6629a2..facc7a52d1 100644 --- a/components/Flag/config/flag_constants.ts +++ b/components/Flag/config/flag_constants.ts @@ -5,6 +5,7 @@ export enum FLAG_REASON { NOT_CONSTRUCTIVE = "Not Constructive", PLAGIARISM = "Plagiarism", ABUSIVE_OR_RUDE = "Rude or Abusive", + AI_ABUSE = "Improper AI Use", NOT_SPECIFIED = "Flag reason not specified", } @@ -15,5 +16,6 @@ export enum FLAG_REASON_DESCRIPTION { PLAGIARISM = "Copied work or ideas of others without citation", ABUSIVE_OR_RUDE = "Aims to offend; not respectful of community members", SPAM = "Exists only to promote a product or service", + AI_ABUSE = "Content violates ResearchHub's AI policy, such as undisclosed or inappropriate AI-generated text.", NOT_SPECIFIED = "Not specified", }