Dashboard →

Documentation

Everything you need to build AI agents with persistent memory. Simple, natural language API with comprehensive guides.

Quick Start

1. Get API Key

Sign up and create an API key from your dashboard.

Create API Key

2. Install SDK

pip install antonlyticsnpm install antonlytics

Documentation

Example Usage

Python

from antonlytics import Agent

agent = Agent(
    api_key="your-key",
    project_id="your-project"
)

# Ingest
agent.ingest("Alice bought Laptop Pro")

# Chat
response = agent.chat("Who bought laptops?")
print(response["response"])

JavaScript

import { Agent } from 'antonlytics';

const agent = new Agent({
  apiKey: 'your-key',
  projectId: 'your-project'
});

// Ingest
await agent.ingest("Alice bought Laptop Pro");

// Chat
const res = await agent.chat("Who bought laptops?");
console.log(res.response);

Additional Resources