Skip to content

Commit bc2e51a

Browse files
authored
Blog/0.2.0 announcement (#44)
* Fix code overflow bug for long lines * Fix Python code block formatting to make it easier to read Signed-off-by: Steve Scargall <37674041+sscargal@users.noreply.github.com>
1 parent da50b20 commit bc2e51a

File tree

2 files changed

+461
-173
lines changed

2 files changed

+461
-173
lines changed

content/en/blog/2025/12/0.2.0-announcement/index.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,16 @@ The new **Client SDK** (`memmachine.rest_client`) allows you to integrate MemMac
6262
from memmachine import MemMachineClient
6363

6464
client = MemMachineClient(base_url="http://localhost:8080")
65-
project = client.create_project(org_id="my_org", project_id="my_agent", description="Memory store for customer support agent")
66-
memory = project.memory(user_id="user123", agent_id="support_bot_01",session_id="session_555")
65+
project = client.create_project(
66+
org_id="my_org",
67+
project_id="my_agent",
68+
description="Memory store for customer support agent"
69+
)
70+
memory = project.memory(
71+
user_id="user123",
72+
agent_id="support_bot_01",
73+
session_id="session_555"
74+
)
6775

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

0 commit comments

Comments
 (0)