LLM Providers
Mistral
Connect Mistral for open-weight model capabilities.
Features
✓Mistral Large support
✓Code generation
✓Function calling
✓European data residency
✓Self-hosting option
✓Mixture of experts
Quick Start
import { Metalogue } from '@metalogue/sdk';
const client = new Metalogue({ apiKey: 'mtlg_...' });
// Connect Mistral
await client.sync('mistral', {
// Configuration options
});
// Query Mistral data
const results = await client.query({
question: 'Your question here',
sources: ['mistral']
});