From cddd9b49773be35dedd4d1d3dbd4ace408d67b50 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Wed, 15 May 2024 10:40:15 -0400 Subject: [PATCH] Removed the AI Prompt as it did not always work correctly --- post/ai.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post/ai.php b/post/ai.php index 4810cde8..16264f73 100644 --- a/post/ai.php +++ b/post/ai.php @@ -12,7 +12,7 @@ if (isset($_GET['ai_reword'])) { $inputJSON = file_get_contents('php://input'); $input = json_decode($inputJSON, TRUE); // Convert JSON into array. - $promptText = "You are an experienced technician at a help desk, training a new technician. You are helping rewrite response for clarity and professionalism, but dont make it too wordy."; + $promptText = ""; $userText = $input['text']; // Preparing the data for the OpenAI Chat API request.