UNPKG

rag-crawler

Version:

Crawl a website to generate knowledge file for RAG

13 lines (12 loc) 280 B
declare const PRESET_LIST: Preset[]; export interface Preset { name: string; test: string; options: { exclude?: string[]; extract?: string; maxConnections?: number; headers?: Record<string, string>; }; } export default PRESET_LIST;