Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ class AIConversationDetailsResponse(TypedDict):
@extend_schema(tags=["Explore"])
@cell_silo_endpoint
class OrganizationAIConversationDetailsEndpoint(OrganizationEventsEndpointBase):
publish_status = {"GET": ApiPublishStatus.PUBLIC}
publish_status = {"GET": ApiPublishStatus.PUBLIC_EXPERIMENTAL}
owner = ApiOwner.TELEMETRY_EXPERIENCE

@extend_schema(
Expand Down Expand Up @@ -167,8 +167,6 @@ def get(
) -> Response[AIConversationDetailsResponse] | Response[DetailResponse] | Response[None]:
"""Return spans recorded for one AI conversation in start-time order.

**Experimental:** This API is under active development and may change.

Message, tool, and response attributes contain their recorded string values.
Without an explicit range, Sentry widens the search across available retention.
A missing conversation returns an empty `spans` list.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def _build_conversation_response(
@cell_silo_endpoint
class OrganizationAIConversationsEndpoint(OrganizationEventsEndpointBase):
publish_status = {
"GET": ApiPublishStatus.PUBLIC,
"GET": ApiPublishStatus.PUBLIC_EXPERIMENTAL,
}
owner = ApiOwner.TELEMETRY_EXPERIENCE

Expand Down Expand Up @@ -242,8 +242,6 @@ def get(
):
"""Return AI conversations ordered by latest span time.

**Experimental:** This API is under active development and may change.

`query` uses Sentry search syntax against spans. A conversation matches when
any span matches. Summary values then include all conversation spans inside
selected project, environment, and time filters.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def validate(self, data: ReleaseThresholdStatusIndexData) -> ReleaseThresholdSta
class ReleaseThresholdStatusIndexEndpoint(OrganizationReleasesBaseEndpoint):
owner: ApiOwner = ApiOwner.REPLAY
publish_status = {
"GET": ApiPublishStatus.PUBLIC,
"GET": ApiPublishStatus.PUBLIC_EXPERIMENTAL,
}

@extend_schema(
Expand All @@ -135,8 +135,6 @@ def get(
self, request: Request, organization: Organization | RpcOrganization
) -> Response[dict[str, list[EnrichedThreshold]]] | Response[ValidationErrorResponse]:
r"""
**`[WARNING]`**: This API is an experimental Alpha feature and is subject to change!

List all derived statuses of releases that fall within the provided start/end datetimes.

Constructs a response key'd off \{`release_version`\}-\{`project_slug`\} that lists thresholds with their status for *specified* projects.
Expand Down
4 changes: 1 addition & 3 deletions src/sentry/seer/endpoints/group_ai_autofix.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def validate(self, data: dict[str, Any]) -> dict[str, Any]:
class GroupAutofixEndpoint(ConditionalGetResponseMixin, FormattableResponseMixin, GroupAiEndpoint):
publish_status = {
"POST": ApiPublishStatus.PUBLIC,
"GET": ApiPublishStatus.PUBLIC,
"GET": ApiPublishStatus.PUBLIC_EXPERIMENTAL,
}
formatter_adapter = staticmethod(format_autofix)
owner = ApiOwner.ML_AI
Expand Down Expand Up @@ -551,8 +551,6 @@ def get(self, request: Request, group: Group) -> Response[AutofixStateResponse]:
- Root Cause Analysis
- Proposed Solution
- Generated code changes

This endpoint although documented is still experimental and the payload may change in the future.
"""
try:
state = get_autofix_agent_state(group.organization, group.id)
Expand Down
Loading