Quick Start
import { VantigeClient } from '@vantige-ai/typescript-sdk';
const client = new VantigeClient({
apiKey: process.env.VANTIGE_API_KEY
});
const response = await client.query({
corpusId: 'docs',
query: 'How do I get started?',
generateAnswer: true
});
console.log(response.answer);
Simple Integration
Add intelligent search to your app with just a few lines of code. No complex RAG pipelines or infrastructure needed.
TypeScript First
Built with TypeScript from the ground up. Enjoy full type safety, IntelliSense support, and comprehensive type definitions.
Enterprise Ready
Production-tested with built-in retry logic, error handling, and support for both test and live environments.