JavaScript / TypeScript SDK
npm install antonlytics
Python SDK
pip install antonlytics

No API key? Create one →

Natural Language Ingestion

No entity mapping required. Write what happened in plain English — the knowledge graph is built automatically.

agent.ingest("Customer Alice bought Laptop Pro for $999")agent.chat("Who bought laptops?")agent.get_memory() # for your own model

Install

bash
npm install antonlytics

Usage

typescript
import { Agent } from "antonlytics";

const agent = new Agent({
  apiKey: "anto_live_YOUR_API_KEY",
  projectId: "YOUR_PROJECT_ID"
});

// Ingest natural language
await agent.ingest(`
  Customer Alice from USA purchased Laptop Pro for $999.
  She's interested in our Enterprise plan.
`);

// Chat — agent remembers context
const res = await agent.chat("Who purchased laptops?");
console.log(res.response);
// => "Alice from USA purchased a Laptop Pro for $999"

// Get structured memory for your own model
const memory = await agent.getMemory("laptop purchases");