Turn any document into searchable, AI-ready data. One API call processes, extracts, chunks, embeds, and indexes — so you can focus on building, not plumbing.
One API call handles the entire pipeline
Send any document — PDF, image, Word, or URL
OCR, extraction, and intelligent chunking
Automatic embedding and vector storage
Query instantly with natural language
import gapi from '@galor/gapi';
const client = gapi.init({ apiKey: 'your-api-key' });
// Create a vault and upload documents
const vault = await client.vault.create('contracts');
await vault.upload('./legal/*.pdf');
// Documents are automatically processed and indexed
// Now search with natural language
const results = await vault.search(
'What are the termination clauses?',
{ rerank: true, limit: 5 }
);
// Each result includes the relevant text and source
results.forEach(r => console.log(r.content, r.document.name));Process PDFs, scanned images, Word documents, spreadsheets, and more. Our OCR handles 40+ languages with 98% accuracy.
Extract text, tables, headers, and metadata automatically. Preserve document structure for better retrieval.
Automatic semantic chunking that respects document boundaries. Optimize for your specific use case.
Every document is immediately searchable with hybrid search — combining semantic and keyword matching.
Documents are automatically embedded and indexed for RAG applications. Start querying instantly.
All processing happens in EU data centers. GDPR compliant. Your data never leaves your control.
Start your free trial and process your first documents in minutes.