LLM Providers
Anthropic
Integrate Claude models for advanced reasoning and analysis.
Features
✓Claude 3.5 Sonnet support
✓Long context windows
✓Tool use capabilities
✓Streaming responses
✓Constitutional AI
✓Enterprise API
Quick Start
import { Metalogue } from '@metalogue/sdk';
const client = new Metalogue({ apiKey: 'mtlg_...' });
// Connect Anthropic
await client.sync('anthropic', {
// Configuration options
});
// Query Anthropic data
const results = await client.query({
question: 'Your question here',
sources: ['anthropic']
});