From afc616d263590c4feac7f42b1b5fbc3289f6f540 Mon Sep 17 00:00:00 2001 From: Kaushal Powar <90775147+kaushalpowar@users.noreply.github.com> Date: Fri, 19 Apr 2024 11:10:38 +0530 Subject: [PATCH] Update GitHubSearchTool.md (#357) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GithubSearchTool was misspelled as GitHubSearchTool Co-authored-by: João Moura --- docs/tools/GitHubSearchTool.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tools/GitHubSearchTool.md b/docs/tools/GitHubSearchTool.md index 707e4c86c..6751da598 100644 --- a/docs/tools/GitHubSearchTool.md +++ b/docs/tools/GitHubSearchTool.md @@ -22,15 +22,15 @@ from crewai_tools import GithubSearchTool # Initialize the tool for semantic searches within a specific GitHub repository tool = GithubSearchTool( - github_repo='https://github.com/example/repo', - content_types=['code', 'issue'] # Options: code, repo, pr, issue + github_repo='https://github.com/example/repo', + content_types=['code', 'issue'] # Options: code, repo, pr, issue ) # OR # Initialize the tool for semantic searches within a specific GitHub repository, so the agent can search any repository if it learns about during its execution tool = GithubSearchTool( - content_types=['code', 'issue'] # Options: code, repo, pr, issue + content_types=['code', 'issue'] # Options: code, repo, pr, issue ) ```