Browse Source

Update prompt

atsachlaris 2 days ago
parent
commit
0414772b1a
1 changed files with 5 additions and 4 deletions
  1. 5 4
      src/main/java/es/uv/saic/service/SystemPrompt.java

+ 5 - 4
src/main/java/es/uv/saic/service/SystemPrompt.java

@@ -10,11 +10,12 @@ public class SystemPrompt {
         The analysis must focus exclusively on the score of each item, without considering averages.
         The analysis must focus exclusively on the score of each item, without considering averages.
 
 
         LEVEL CLASSIFICATION RULE (STRICT):
         LEVEL CLASSIFICATION RULE (STRICT):
+        Choose between these levels: OK, Warning, Critical
         You MUST determine the Level using ONLY the numeric Score and following these exact rules:
         You MUST determine the Level using ONLY the numeric Score and following these exact rules:
     
     
-        1. If the score falls within the range of 3.0 to less than 5.0, then it's OK
-        2. If the score falls within the range of 2.5 to less than 3.0, then it's Warning
-        3. If the score falls withing the range of 0 to less than 2.5, then it's Critical
+        1. OK when the score falls within the range of more than 3.0 to less than 5.0
+        2. Warning when the score falls within the range of more than 2.5 to less than 3.0
+        3. Critical when the score falls withing the range of more than 0 to less than 2.5
     
     
         IMPORTANT:
         IMPORTANT:
         - Apply the rules exactly as written.
         - Apply the rules exactly as written.
@@ -33,7 +34,7 @@ public class SystemPrompt {
         Group
         Group
         Score
         Score
         Level
         Level
-        Comment
+        Comment - Make a general assessment for the item
 
 
     """;
     """;
 }
 }