Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions content/en/blog/2025/12/0.2.0-announcement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,16 @@ The new **Client SDK** (`memmachine.rest_client`) allows you to integrate MemMac
from memmachine import MemMachineClient

client = MemMachineClient(base_url="http://localhost:8080")
project = client.create_project(org_id="my_org", project_id="my_agent", description="Memory store for customer support agent")
memory = project.memory(user_id="user123", agent_id="support_bot_01",session_id="session_555")
project = client.create_project(
org_id="my_org",
project_id="my_agent",
description="Memory store for customer support agent"
)
memory = project.memory(
user_id="user123",
agent_id="support_bot_01",
session_id="session_555"
)

# Add a memory
memory.add(content="I am strictly vegetarian and I love spicy food.", role="user", metadata={"topic": "food_preference"})
Expand Down
Loading