Skip to main content

Documentation

Everything you need to know about AINative Studio

Getting Started
Learn the basics and get up and running quickly
API Reference
Detailed documentation of our API endpoints
Tutorials
Step-by-step guides for common use cases
CLI Documentation
Command-line interface documentation and ZeroDB CLI
Quick Implementation
Get started with just a few lines of code
import { AINativeClient } from '@ainative/sdk';

// Initialize the client
const client = new AINativeClient({
  apiKey: 'your_api_key',
  options: {
    enableAutocompletion: true,
    enableSemanticSearch: true
  }
});

// Use the AI-powered features
async function main() {
  const results = await client.search({
    query: 'implement authentication',
    topK: 10
  });

  console.log('Search results:', results);
}

main();

Need help getting started?