@steno-ai/local
v0.1.1
Published
Zero-config local Steno setup with SQLite
Readme
@steno-ai/local
Zero-config local Steno setup. Runs entirely on your machine with SQLite storage and any OpenAI-compatible LLM (Ollama, LM Studio, etc.).
Install
npm install @steno-ai/localUsage
import { createStenoLocal, OLLAMA_PRESET } from '@steno-ai/local';
const steno = await createStenoLocal({
...OLLAMA_PRESET,
dbPath: './steno.db',
});
// Add memories
await steno.memory.add({
scope: 'user',
scopeId: 'user_123',
data: 'I love hiking and live in Portland',
});
// Search
const results = await steno.memory.search({
query: 'hobbies',
scope: 'user',
scopeId: 'user_123',
});
// Sessions, triggers, graph, feedback -- all available
steno.close();Presets
OLLAMA_PRESET-- Ollama with default modelsLM_STUDIO_PRESET-- LM Studio with default models
CLI
npx @steno-ai/localPart of Steno
The memory layer for AI agents.
