Sno Docs

Quick Start

Get up and running with Sno in under 5 minutes.

Quick Start

Get Sno integrated with your AI agent in just a few steps.

Prerequisites

  • An AI application (Claude, GPT, etc.)
  • A Sno account (sign up here)
  • API key from your dashboard

Installation

npm install @snoai/sdk

Basic Usage

import { Sno } from '@snoai/sdk';

const sno = new Sno({
  apiKey: process.env.SNO_API_KEY,
});

// Store a memory
await sno.remember({
  content: "User prefers dark mode",
  tags: ["preferences", "ui"]
});

// Recall memories
const memories = await sno.recall("user preferences");

Next Steps