AntonlyticsAntonlytics/docs
Dashboard →

Documentation

Everything you need to connect your data, query the knowledge graph, and build AI-powered analytics on top.

Quick Start

1 — Get an API Key

Sign up and create an API key from your dashboard.

Create API Key

2 — Install SDK

pip install antonlyticsnpm install antonlytics

References

Example Usage

Python

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

typescript
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