You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: chat/sippy_agent/tools/sippy_test_details.py
+15-12Lines changed: 15 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ class SippyTestDetailsTool(SippyBaseTool):
19
19
20
20
name: str="get_test_details_report"
21
21
description: str="""Get a test details report from Sippy API including regression analysis and statistics.
22
-
22
+
23
23
This tool provides:
24
24
- Regression status and history
25
25
- Sample vs base statistics comparison
@@ -31,13 +31,13 @@ class SippyTestDetailsTool(SippyBaseTool):
31
31
- Triage information
32
32
- Pass rate changes
33
33
34
-
Input: query_params (the query parameters for the test details endpoint, e.g., testId=12345&component=...&baseRelease=...)"""
34
+
Input: url (the test details URL, passed verbatim without modification)"""
35
35
36
36
# Add sippy_api_url as a proper field
37
37
sippy_api_url: Optional[str] =Field(default=None, description="Sippy API base URL")
38
38
39
39
classTestDetailsInput(SippyToolInput):
40
-
query_params: str=Field(description="Query parameters for the test details endpoint. Can be either just the query params (e.g., testId=12345&component=foo) or a full URL (the query params will be extracted)")
40
+
url: str=Field(description="The test details URL. Pass the URL exactly as provided without any modifications.")
0 commit comments