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 ) ```