Skip to content

Commit 271e729

Browse files
kddubeyandrewshie-sentry
authored andcommittedFeb 5, 2025
feat(issue summary) Receive optional possible cause scores (#84346)
<!-- Describe your PR here. --> schema from [here](https://github.com/getsentry/seer/blob/696452da11113cec497029bfb92339d7660ead8d/src/seer/automation/summarize/models.py#L17-L28) <!-- Sentry employees and contractors can delete or ignore the following. -->
1 parent 020de25 commit 271e729

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed
 

‎src/sentry/api/endpoints/group_ai_summary.py

+6
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,18 @@
3333
from rest_framework.request import Request
3434

3535

36+
class SummarizeIssueScores(BaseModel):
37+
possible_cause_confidence: float
38+
possible_cause_novelty: float
39+
40+
3641
class SummarizeIssueResponse(BaseModel):
3742
group_id: str
3843
headline: str
3944
whats_wrong: str | None = None
4045
trace: str | None = None
4146
possible_cause: str | None = None
47+
scores: SummarizeIssueScores | None = None
4248

4349

4450
@region_silo_endpoint

‎tests/sentry/api/endpoints/test_group_ai_summary.py

+21-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33

44
import orjson
55

6-
from sentry.api.endpoints.group_ai_summary import GroupAiSummaryEndpoint, SummarizeIssueResponse
6+
from sentry.api.endpoints.group_ai_summary import (
7+
GroupAiSummaryEndpoint,
8+
SummarizeIssueResponse,
9+
SummarizeIssueScores,
10+
)
711
from sentry.api.serializers.rest_framework.base import convert_dict_key_case, snake_to_camel_case
812
from sentry.testutils.cases import APITestCase, SnubaTestCase
913
from sentry.testutils.helpers.features import apply_feature_flag_on_cls
@@ -37,6 +41,10 @@ def test_ai_summary_get_endpoint_with_existing_summary(self, mock_call_seer):
3741
"whats_wrong": "Existing whats wrong",
3842
"trace": "Existing trace",
3943
"possible_cause": "Existing possible cause",
44+
"scores": {
45+
"possible_cause_confidence": 0.9,
46+
"possible_cause_novelty": 0.8,
47+
},
4048
}
4149

4250
# Set the cache with the existing summary
@@ -82,6 +90,10 @@ def test_ai_summary_get_endpoint_without_existing_summary(
8290
whats_wrong="Test whats wrong",
8391
trace="Test trace",
8492
possible_cause="Test possible cause",
93+
scores=SummarizeIssueScores(
94+
possible_cause_confidence=0.0,
95+
possible_cause_novelty=0.0,
96+
),
8597
)
8698
mock_call_seer.return_value = mock_summary
8799
mock_get_connected_issues.return_value = [self.group, self.group]
@@ -126,6 +138,10 @@ def test_ai_summary_call_seer(self, mock_get_event, mock_post):
126138
"trace": "Test trace",
127139
"possible_cause": "Test possible cause",
128140
"headline": "Test headline",
141+
"scores": {
142+
"possible_cause_confidence": 0.9,
143+
"possible_cause_novelty": 0.8,
144+
},
129145
}
130146
mock_post.return_value = mock_response
131147

@@ -230,6 +246,10 @@ def test_call_seer_payload(self):
230246
"trace": "Test trace",
231247
"possible_cause": "Test possible cause",
232248
"headline": "Test headline",
249+
"scores": {
250+
"possible_cause_confidence": 0.9,
251+
"possible_cause_novelty": 0.8,
252+
},
233253
}
234254

235255
self.client.post(self.url, format="json")

0 commit comments

Comments
 (0)
Please sign in to comment.