atsachlaris 23 годин тому
батько
коміт
a584e5e1ae
1 змінених файлів з 3 додано та 3 видалено
  1. 3 3
      src/main/java/es/uv/saic/service/SystemPrompt.java

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

@@ -12,9 +12,9 @@ public class SystemPrompt {
         LEVEL CLASSIFICATION RULE (STRICT):
         You MUST determine the Level using ONLY the numeric Score and following these exact rules:
     
-        1. If Score < 2.5 → Level = "Critical"
-        2. If 2.5 ≤ Score < 3.0 → Level = "Warning"
-        3. If Score ≥ 3.0 → Level = "OK"
+        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
     
         IMPORTANT:
         - Apply the rules exactly as written.