initial commit: slides ready + upgraded

This commit is contained in:
2026-05-24 10:37:53 +02:00
commit f6f46972c3
173 changed files with 16756 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
---
layout: default
---
# Document Loaders
<v-clicks>
**Document Loaders** transforman datos de distintas fuentes en objetos `Document` de LangChain
```typescript
// 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` |
</v-clicks>