• Import from "@langchain/community/document_loaders/web/recursive_url" instead. This entrypoint will be removed in 0.3.0.
interface RecursiveUrlLoaderOptions {
    callerOptions?: any;
    excludeDirs?: string[];
    extractor?: ((text: string) => string);
    maxDepth?: number;
    preventOutside?: boolean;
    timeout?: number;
}

Properties

callerOptions?: any
excludeDirs?: string[]
extractor?: ((text: string) => string)
maxDepth?: number
preventOutside?: boolean
timeout?: number