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
Quick Start Example
Install
pip install ainative-sdkQuick 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.
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