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
+47
View File
@@ -0,0 +1,47 @@
---
layout: default
---
# Intercambiabilidad de Modelos
<div class="mt-10 text-sm">
<div class="grid grid-cols-2 gap-8">
<v-click>
```typescript
// Google Gemini
import { ChatGoogle } from "@langchain/google";
const model = new ChatGoogle({
model: "gemini-2.5-flash"
});
```
</v-click>
<v-click>
```typescript
// Ollama (Local)
import { ChatOllama } from "@langchain/ollama";
const model = new ChatOllama({
model: "llama3.2"
});
```
</v-click>
</div>
<v-click>
<div class="mt-8 text-center text-sm opacity-80">
⚡ Todos usan la misma interfaz: <code>.invoke()</code>, <code>.stream()</code>, <code>.batch()</code>
</div>
</v-click>
</div>