Documentation
Everything you need to build
Comprehensive documentation, SDK reference, and guides to help you integrate Jabrod into your applications quickly and efficiently.
Simple, intuitive SDK
Our TypeScript SDK is designed with developer experience in mind. Create knowledge bases, upload documents, and query with AI in just a few lines of code.
- Full TypeScript support with type definitions
- Builder pattern for complex queries
- Works in Node.js and browsers
- Automatic error handling
example.ts
import { JabrodClient } from 'jabrod';
const jabrod = new JabrodClient({
apiKey: 'jb_xxx'
});
// Query with builder pattern
const result = await jabrod.rag
.chatBuilder()
.withMessage('Summarize the docs')
.withKnowledgeBase('kb_123')
.execute();