Documentation
Everything you need to build AI agents with persistent memory. Simple, natural language API with comprehensive guides.
Quick Start
2. Install SDK
pip install antonlyticsnpm install antonlyticsDocumentation
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);