diff options
| author | Dhravya Shah <[email protected]> | 2026-01-18 16:55:32 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-01-18 16:55:32 -0800 |
| commit | 87b361c26bf5fc16049cd2727825891aa14b8e8b (patch) | |
| tree | c2f9f4f6223a7c1734578b772a16490ba2eb8b96 /apps/docs/memory-api/features | |
| parent | Add Claude Code GitHub Workflow (#681) (diff) | |
| download | supermemory-87b361c26bf5fc16049cd2727825891aa14b8e8b.tar.xz supermemory-87b361c26bf5fc16049cd2727825891aa14b8e8b.zip | |
docs changes (#678)
Co-authored-by: Claude Opus 4.5 <[email protected]>
Diffstat (limited to 'apps/docs/memory-api/features')
| -rw-r--r-- | apps/docs/memory-api/features/filtering.mdx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/docs/memory-api/features/filtering.mdx b/apps/docs/memory-api/features/filtering.mdx index 3873e606..e7e3a14d 100644 --- a/apps/docs/memory-api/features/filtering.mdx +++ b/apps/docs/memory-api/features/filtering.mdx @@ -168,7 +168,7 @@ curl --location 'https://api.supermemory.ai/v3/documents' \ ``` ```typescript Typescript -await client.memories.create({ +await client.documents.create({ content: "quarterly planning meeting discussion", metadata: { participants: ["john.doe", "sarah.smith", "mike.wilson"] @@ -177,7 +177,7 @@ await client.memories.create({ ``` ```python Python -client.memories.create( +client.documents.create( content="quarterly planning meeting discussion", metadata={ "participants": ["john.doe", "sarah.smith", "mike.wilson"] |