Skip to content

Commit a08eebf

Browse files
committed
Tidy docstrings
1 parent c413e53 commit a08eebf

File tree

1 file changed

+2
-3
lines changed
  • agent-memory-client/agent_memory_client

1 file changed

+2
-3
lines changed

agent-memory-client/agent_memory_client/client.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ async def get_or_create_working_memory(
343343
344344
logging.info(f"Session has {len(memory.messages)} messages")
345345
346-
# With custom memory extraction strategy
346+
# With memory extraction strategy options
347347
created, memory = await client.get_or_create_working_memory(
348348
session_id="chat_session_456",
349349
user_id="user_789",
@@ -1262,12 +1262,11 @@ async def get_or_create_working_memory_tool(
12621262
logging.info(f"Messages: {memory_state['message_count']}")
12631263
logging.info(f"Memories: {len(memory_state['memories'])}")
12641264
1265-
# With custom memory extraction strategy
1265+
# With memory extraction strategy options
12661266
memory_state = await client.get_or_create_working_memory_tool(
12671267
session_id="current_session",
12681268
long_term_memory_strategy=MemoryStrategyConfig(
12691269
strategy="preferences",
1270-
config={}
12711270
)
12721271
)
12731272
```

0 commit comments

Comments
 (0)