[GH-ISSUE #101] Github repo document loader #68

Closed
opened 2026-02-22 18:17:45 -05:00 by yindo · 1 comment
Owner

Originally created by @StefanENC on GitHub (Jun 22, 2023).
Original GitHub issue: https://github.com/Mintplex-Labs/anything-llm/issues/101

Hello, any chance of you to implement the github document loader as per the official langchainjs repo?

import { GithubRepoLoader } from "langchain/document_loaders/web/github";

export const run = async () => {
  const loader = new GithubRepoLoader(
    "https://github.com/hwchase17/langchainjs",
    { branch: "main", recursive: false, unknown: "warn" }
  );
  const docs = await loader.load();
  console.log({ docs });
};
Originally created by @StefanENC on GitHub (Jun 22, 2023). Original GitHub issue: https://github.com/Mintplex-Labs/anything-llm/issues/101 Hello, any chance of you to implement the github document loader as per the [official langchainjs repo](https://github.com/hwchase17/langchainjs/blob/main/examples/src/document_loaders/github.ts)? ``` import { GithubRepoLoader } from "langchain/document_loaders/web/github"; export const run = async () => { const loader = new GithubRepoLoader( "https://github.com/hwchase17/langchainjs", { branch: "main", recursive: false, unknown: "warn" } ); const docs = await loader.load(); console.log({ docs }); }; ```
yindo added the enhancementgood first issue labels 2026-02-22 18:17:45 -05:00
yindo closed this issue 2026-02-22 18:17:45 -05:00
Author
Owner

@pramodgoud7 commented on GitHub (Dec 14, 2023):

i will work on it

@pramodgoud7 commented on GitHub (Dec 14, 2023): i will work on it
yindo changed title from Github repo document loader to [GH-ISSUE #101] Github repo document loader 2026-06-05 14:33:18 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#68