Interface DocumentGithubLoaderNodeParameters

Source
interface DocumentGithubLoaderNodeParameters {
    additionalOptions?: {
        ignorePaths?: string;
        recursive?: boolean;
    };
    branch?: string;
    repository?: string;
    textSplittingMode?: "custom"
    | "simple";
}

Properties§

Source§

readonly additionalOptions?: { ignorePaths?: string; recursive?: boolean }

Default: {}

Source§

readonly branch?: string

Default: "main"

Source§

readonly repository?: string

Source§

readonly textSplittingMode?: "custom" | "simple"

Default: "simple"