Skip to content

Instantly share code, notes, and snippets.

@Njuelle
Last active November 19, 2023 22:38
Show Gist options
  • Select an option

  • Save Njuelle/9ad6543ae52fc62ca4b04d8d115bbaf2 to your computer and use it in GitHub Desktop.

Select an option

Save Njuelle/9ad6543ae52fc62ca4b04d8d115bbaf2 to your computer and use it in GitHub Desktop.
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