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
+36
View File
@@ -0,0 +1,36 @@
---
layout: default
---
# Más proveedores de Embeddings
<v-clicks>
### Mistral AI
```typescript
import { MistralAIEmbeddings } from "@langchain/mistralai";
const embeddings = new MistralAIEmbeddings({
model: "mistral-embed",
});
```
### Cohere
```typescript
import { CohereEmbeddings } from "@langchain/cohere";
const embeddings = new CohereEmbeddings({
model: "embed-multilingual-v3.0",
});
```
### Ollama (local)
```typescript
import { OllamaEmbeddings } from "@langchain/ollama";
const embeddings = new OllamaEmbeddings({
model: "llama3.2", // o cualquier modelo compatible
});
```
</v-clicks>