AIに持続的な記憶を。Seiznがコンテキストを自動で保存・検索し、AIが過去の会話を記憶します。
シンプルなAPI、パワフルなインフラ。数分で任意のAIに永続的なメモリを追加できます。
Claude AIを使用して、会話から重要な事実、好み、コンテキストを自動的に抽出します。
ハイブリッドベクター+グラフ検索が、毎回ミリ秒単位で関連するメモリを返します。
エンドツーエンド暗号化、SOC 2準拠、きめ細かなアクセス制御と監査ログを提供します。
数行のコードでAIにメモリを追加できます。
import { Seizn } from '@seizn/sdk';
const seizn = new Seizn({ apiKey: process.env.SEIZN_API_KEY });
// Add a memory
await seizn.add({
content: "User prefers dark mode and lives in Seoul",
userId: "user_123"
});
// Search memories
const memories = await seizn.search({
query: "What are the user's preferences?",
userId: "user_123"
});