We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45b155c commit e41923cCopy full SHA for e41923c
src/sentry/issues/grouptype.py
@@ -66,6 +66,8 @@ class GroupCategory(IntEnum):
66
FRONTEND = 14
67
MOBILE = 15
68
69
+ AI_DETECTED = 16
70
+
71
72
GROUP_CATEGORIES_CUSTOM_EMAIL = (
73
GroupCategory.ERROR,
@@ -622,8 +624,8 @@ class LLMDetectedExperimentalGroupType(GroupType):
622
624
type_id = 3501
623
625
slug = "llm_detected_experimental"
626
description = "LLM Detected Issue"
- category = GroupCategory.PERFORMANCE.value
- category_v2 = GroupCategory.METRIC.value
627
+ category = GroupCategory.AI_DETECTED.value
628
+ category_v2 = GroupCategory.AI_DETECTED.value
629
default_priority = PriorityLevel.MEDIUM
630
released = False
631
enable_auto_resolve = False
0 commit comments