@zaikit/memory-postgres
v0.1.2
Published
Postgres-backed memory provider for ZAIKit agents. Persists conversation threads and messages.
Readme
@zaikit/memory-postgres
Postgres-backed memory provider for ZAIKit agents. Persists conversation threads and messages.
Install
pnpm add @zaikit/memory-postgresUsage
import { createAgent } from "@zaikit/core";
import { createPostgresMemory } from "@zaikit/memory-postgres";
const memory = createPostgresMemory({
connectionString: process.env.DATABASE_URL,
});
const agent = createAgent({
memory,
// ...
});Documentation
License
Apache-2.0
