From a1ac1effff6b0c97f1dd3f7017bce88dc0ce0909 Mon Sep 17 00:00:00 2001 From: Ramnath Vaidyanathan Date: Mon, 12 Feb 2024 06:16:50 -0800 Subject: [PATCH] Update README.md to fix a bug in the example (#942) Update example with the correct owner name so that it runs without any errors. In the absence of this change, the example throws a misleading error ``` KeyError: commit ``` --- llama_hub/github_repo/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_hub/github_repo/README.md b/llama_hub/github_repo/README.md index aa9cde0d5d..8ac7d85f67 100644 --- a/llama_hub/github_repo/README.md +++ b/llama_hub/github_repo/README.md @@ -23,7 +23,7 @@ from llama_hub.github_repo import GithubRepositoryReader, GithubClient github_client = GithubClient(os.getenv("GITHUB_TOKEN")) loader = GithubRepositoryReader( github_client, - owner = "jerryjliu", + owner = "run-llama", repo = "llama_index", filter_directories = (["llama_index", "docs"], GithubRepositoryReader.FilterType.INCLUDE), filter_file_extensions = ([".py"], GithubRepositoryReader.FilterType.INCLUDE),