Last active
November 19, 2023 22:38
-
-
Save Njuelle/9ad6543ae52fc62ca4b04d8d115bbaf2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const repositoryUrl = "<https://github.com/Njuelle/github-rag-example>"; | |
| const loader = new GithubRepoLoader(repositoryUrl, { | |
| branch: "main", | |
| recursive: true, | |
| // long file should be ignored to avoid "max token" error | |
| ignoreFiles: ["bun.lockb"], | |
| }); | |
| const docs = await loader.load(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment