The whole hunk
from line 28, old and new numbered
/
lines
from line 28
2828
2929Give the store a `name` and a `description`. The description is passed to the agent, telling it what the store contains.
3030
31<CodeGroup>
31<CodeGroup defaultLanguage="CLI">
3232 ```bash cURL
3333 curl -s https://api.anthropic.com/v1/memory_stores \
3434 -H "x-api-key: $ANTHROPIC_API_KEY" \
from line 38
3838 -d '{"name": "User Preferences", "description": "Per-user preferences and project context."}'
3939 ```
4040
41 ```bash CLI
42 ant beta:memory-stores create \
43 --name "User Preferences" \
44 --description "Per-user preferences and project context."
45 ```
41 <MultiFileExample language="cli" label="CLI">
42 ```bash CLI
43 ant apply memory_store.yaml
44 ```
45
46 <File filename="memory_store.yaml">
47 ```yaml
48 name: User Preferences
49 description: Per-user preferences and project context.
50 ```
51 </File>
52 </MultiFileExample>
4653
4754 ```python Python
4855 store = client.beta.memory_stores.create(