Getting Started with AINative

Build intelligent applications in minutes with our powerful AI infrastructure

5 minutes to first API call-Production-ready-Comprehensive docs

4 Steps to Success

1

Create Account

Sign up for free and get your API keys

Sign Up
2

Install SDK

Choose your preferred language and install the SDK

View SDKs
3

Create Project

Initialize your first project and start building

Try Example
4

Deploy & Scale

Deploy your application and scale with confidence

Learn More

Quick Start Example

Install
pip install ainative-sdk
Quick Start Example
import asyncio
from ainative import AINativeClient

async def main():
    # Initialize client
    client = AINativeClient(
        api_key="your-api-key",
        organization_id="your-org-id"
    )

    # Create a project
    project = await client.zerodb.projects.create(
        name="My First Project",
        description="Getting started with AINative"
    )
    print(f"Created project: {project.id}")

    # Store a memory
    memory = await client.zerodb.memory.create(
        content="AINative makes AI development simple and powerful",
        tags=["getting-started", "tutorial"]
    )
    print(f"Stored memory: {memory.id}")

    # Search memories
    results = await client.zerodb.memory.search(
        query="AI development",
        limit=10
    )
    print(f"Found {len(results)} memories")

if __name__ == "__main__":
    asyncio.run(main())

Replace your-api-key with your actual API key from the dashboard.

Get Your API Key

Core Features

Vector Database (ZeroDB)

Store and search high-dimensional vectors with semantic similarity

  • Billion-scale vector storage
  • Sub-millisecond search
  • Metadata filtering
  • Automatic indexing

Memory System

Persistent memory for AI agents with intelligent retrieval

  • Long-term memory storage
  • Semantic memory search
  • Context-aware retrieval
  • Memory consolidation

Agent Swarm

Orchestrate multiple AI agents for complex tasks

  • Multi-agent coordination
  • Task distribution
  • Real-time monitoring
  • Fault tolerance

Need Help Getting Started?

Our community and support team are here to help you succeed