LLM Providers
Google AI
Connect Google Gemini models for multimodal AI capabilities.
Features
✓Gemini Pro and Ultra
✓Multimodal input
✓Embedding models
✓Vertex AI integration
✓Streaming support
✓Enterprise security
Quick Start
import { Metalogue } from '@metalogue/sdk';
const client = new Metalogue({ apiKey: 'mtlg_...' });
// Connect Google AI
await client.sync('google-ai', {
// Configuration options
});
// Query Google AI data
const results = await client.query({
question: 'Your question here',
sources: ['google-ai']
});