Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
Update README.md to fix a bug in the example
Browse files Browse the repository at this point in the history
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
```
  • Loading branch information
ramnathv authored Feb 12, 2024
1 parent 92cbd57 commit 8b9aaaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llama_hub/github_repo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 8b9aaaa

Please sign in to comment.