LLM Providers
Cohere
Integrate Cohere for enterprise NLP and embeddings.
Features
✓Command models
✓Embed v3 support
✓Rerank capabilities
✓Classification
✓RAG optimization
✓Enterprise deployment
Quick Start
import { Metalogue } from '@metalogue/sdk';
const client = new Metalogue({ apiKey: 'mtlg_...' });
// Connect Cohere
await client.sync('cohere', {
// Configuration options
});
// Query Cohere data
const results = await client.query({
question: 'Your question here',
sources: ['cohere']
});