diff --git a/README.md b/README.md index 3dd5f702..ddce1fa6 100644 --- a/README.md +++ b/README.md @@ -147,8 +147,6 @@ ___ \ ‣ **Update Changelog ([`/update_changelog`](https://qodo-merge-docs.qodo.ai/tools/update_changelog/))**: Automatically updating the CHANGELOG.md file with the PR changes. \ -‣ **Find Similar Issue ([`/similar_issue`](https://qodo-merge-docs.qodo.ai/tools/similar_issues/))**: Automatically retrieves and presents similar issues. -\ ‣ **Add Documentation 💎 ([`/add_docs`](https://qodo-merge-docs.qodo.ai/tools/documentation/))**: Generates documentation to methods/functions/classes that changed in the PR. \ ‣ **Generate Custom Labels 💎 ([`/generate_labels`](https://qodo-merge-docs.qodo.ai/tools/custom_labels/))**: Generates custom labels for the PR, based on specific guidelines defined by the user. diff --git a/docs/docs/tools/index.md b/docs/docs/tools/index.md index 58af637f..419c6840 100644 --- a/docs/docs/tools/index.md +++ b/docs/docs/tools/index.md @@ -9,7 +9,6 @@ Here is a list of Qodo Merge tools, each with a dedicated page that explains how | **[Code Suggestions (`/improve`](./improve.md))** | Code suggestions for improving the PR | | **[Question Answering (`/ask ...`](./ask.md))** | Answering free-text questions about the PR, or on specific code lines | | **[Update Changelog (`/update_changelog`](./update_changelog.md))** | Automatically updating the CHANGELOG.md file with the PR changes | -| **[Find Similar Issue (`/similar_issue`](./similar_issues.md))** | Automatically retrieves and presents similar issues | | **[Help (`/help`](./help.md))** | Provides a list of all the available tools. Also enables to trigger them interactively (💎) | | **💎 [Add Documentation (`/add_docs`](./documentation.md))** | Generates documentation to methods/functions/classes that changed in the PR | | **💎 [Generate Custom Labels (`/generate_labels`](./custom_labels.md))** | Generates custom labels for the PR, based on specific guidelines defined by the user | diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index 1d1e2c02..c14773b3 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -28,7 +28,6 @@ nav: - Improve: 'tools/improve.md' - Ask: 'tools/ask.md' - Update Changelog: 'tools/update_changelog.md' - - Similar Issues: 'tools/similar_issues.md' - Help: 'tools/help.md' - 💎 Analyze: 'tools/analyze.md' - 💎 Test: 'tools/test.md' diff --git a/pr_agent/tools/pr_help_message.py b/pr_agent/tools/pr_help_message.py index 0ba029f2..d22e4f2d 100644 --- a/pr_agent/tools/pr_help_message.py +++ b/pr_agent/tools/pr_help_message.py @@ -214,7 +214,6 @@ class PRHelpMessage: tool_names.append(f"[IMPROVE COMPONENT]({base_path}/improve_component/) 💎") tool_names.append(f"[ANALYZE]({base_path}/analyze/) 💎") tool_names.append(f"[ASK]({base_path}/ask/)") - tool_names.append(f"[SIMILAR ISSUE]({base_path}/similar_issues/)") tool_names.append(f"[GENERATE CUSTOM LABELS]({base_path}/custom_labels/) 💎") tool_names.append(f"[CI FEEDBACK]({base_path}/ci_feedback/) 💎") tool_names.append(f"[CUSTOM PROMPT]({base_path}/custom_prompt/) 💎") @@ -246,7 +245,6 @@ class PRHelpMessage: commands.append("`/improve_component`") commands.append("`/analyze`") commands.append("`/ask`") - commands.append("`/similar_issue`") commands.append("`/generate_labels`") commands.append("`/checks`") commands.append("`/custom_prompt`")