Skip to content

Commit b77b442

Browse files
Apply suggestions from code review
Co-authored-by: devin-ai-integration[bot] <158243242+devin-ai-integration[bot]@users.noreply.github.com>
1 parent 5f4eec8 commit b77b442

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/content/docs/agent-memory/concepts/profiles-and-namespaces.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Agent Memory uses a two-level isolation model: **namespaces** group profiles by
1414

1515
A namespace is a top-level container that scopes a set of memory profiles. You typically create one namespace per application, or one per environment (development, staging, production) within an application.
1616

17-
Namespaces are created through the [Namespace Management API](/agent-memory/api/namespaces/) and referenced by ID in your [Wrangler binding configuration](/agent-memory/configuration/bindings/).
17+
Namespaces are created through the [Namespace Management API](/agent-memory/api/namespaces/) and referenced by name in your [Wrangler binding configuration](/agent-memory/configuration/bindings/).
1818

1919
### Naming constraints
2020

src/content/docs/agent-memory/get-started/guide.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ sidebar:
99
label: Guide
1010
---
1111

12-
import { TypeScriptExample, WranglerConfig, Steps } from "~/components";
12+
import { TypeScriptExample, WranglerConfig } from "~/components";
1313

1414
This guide walks you through adding persistent memory to a Cloudflare Worker. By the end, your Worker will be able to ingest conversations, recall stored knowledge, and generate profile summaries.
1515

@@ -32,7 +32,7 @@ curl -X POST "https://api.cloudflare.com/client/v4/accounts/{account_id}/agent-m
3232
-d '{"name": "my-app"}'
3333
```
3434

35-
The response includes a `namespace_id` that you will use to configure your Worker binding.
35+
The response includes the namespace `name` that you will use to configure your Worker binding.
3636

3737
```json
3838
{
@@ -59,7 +59,7 @@ Select the default options when prompted.
5959

6060
## 3. Add the memory binding
6161

62-
Add the `agent_memory` binding to your Wrangler configuration. Replace the `namespace` value with the `namespace_id` from step 1.
62+
Add the `agent_memory` binding to your Wrangler configuration. Replace the `namespace` value with the namespace name from step 1.
6363

6464
<WranglerConfig>
6565

0 commit comments

Comments
 (0)