Skip to content
Open
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
2 changes: 1 addition & 1 deletion ymir/agents/preliminary_testing_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def create_preliminary_testing_agent(gateway_tools: list) -> ReasoningAgent:
in [
"fetch_gitlab_mr_notes",
"get_jira_details",
"get_failed_pipeline_jobs_from_merge_request",
"get_failed_pipeline_jobs_from_mr",
]
],
memory=UnconstrainedMemory(),
Expand Down
4 changes: 2 additions & 2 deletions ymir/tools/privileged/gitlab.py
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ class GetFailedPipelineJobsFromMergeRequestTool(
JSONToolOutput[list[FailedPipelineJob]],
]
):
name = "get_failed_pipeline_jobs_from_merge_request"
name = "get_failed_pipeline_jobs_from_mr"
description = """
Gets the failed pipeline jobs from the latest pipeline of a merge request.
Returns a list of failed pipeline jobs with their details.
Expand Down Expand Up @@ -843,7 +843,7 @@ class GetAuthorizedCommentsFromMergeRequestTool(
JSONToolOutput[list[MergeRequestComment]],
]
):
name = "get_authorized_comments_from_merge_request"
name = "get_authorized_comments_from_mr"
description = """
Gets all comments from a merge request, filtered to only include
comments from authorized members with Developer role or higher.
Expand Down
Loading