741 B
741 B
layout
| layout |
|---|
| default |
Document Loaders
Document Loaders transforman datos de distintas fuentes en objetos Document de LangChain
// Estructura de un Document
interface Document {
pageContent: string; // contenido del texto
metadata: Record<string, any>; // información sobre la fuente
}
Categorías principales
| Tipo | Ejemplos | Paquete |
|---|---|---|
| Archivos locales | PDF, DOCX, CSV, JSON, EPUB, PPTX | @langchain/community |
| Web | Cheerio, Playwright, Puppeteer | @langchain/community |
| Servicios | GitHub, Notion, Confluence, Jira | @langchain/community |
| Audio | OpenAI Whisper, AssemblyAI | @langchain/community |