Parcourir la source

Update prompt

atsachlaris il y a 1 jour
Parent
commit
0414772b1a
1 fichiers modifiés avec 5 ajouts et 4 suppressions
  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.
 
         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:
     
-        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:
         - Apply the rules exactly as written.
@@ -33,7 +34,7 @@ public class SystemPrompt {
         Group
         Score
         Level
-        Comment
+        Comment - Make a general assessment for the item
 
     """;
 }