diff options
| author | Dhravya Shah <[email protected]> | 2025-04-05 16:49:03 -0700 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2025-04-05 16:49:03 -0700 |
| commit | 9c2f020c2caec0e999f85b58338d37ca1c5ee890 (patch) | |
| tree | 7ee121b964a2b1ed8e9c56ce093c3cecd07fdcd0 /apps/docs/api-reference/endpoints/memory-management | |
| parent | update:docs (diff) | |
| download | supermemory-9c2f020c2caec0e999f85b58338d37ca1c5ee890.tar.xz supermemory-9c2f020c2caec0e999f85b58338d37ca1c5ee890.zip | |
connections endpoints
Diffstat (limited to 'apps/docs/api-reference/endpoints/memory-management')
| -rw-r--r-- | apps/docs/api-reference/endpoints/memory-management/post-add.mdx | 55 |
1 files changed, 54 insertions, 1 deletions
diff --git a/apps/docs/api-reference/endpoints/memory-management/post-add.mdx b/apps/docs/api-reference/endpoints/memory-management/post-add.mdx index d3785614..95cba75e 100644 --- a/apps/docs/api-reference/endpoints/memory-management/post-add.mdx +++ b/apps/docs/api-reference/endpoints/memory-management/post-add.mdx @@ -2,5 +2,58 @@ openapi: post /add --- +Add a new memory with content and metadata. -If i write something here, what happens?
\ No newline at end of file +Fields: + +`content`: string + +`id`: string + +`metadata`: Record + +The `content` can be of the following types: + +- note / Markdown + + - If it is a markdown, all the images inside `![]` image tags will automatically be parsed. + +- pdf + +- tweet + +- google_doc + +- notion_doc + +- webpage URL + + - Images and other content is also intelligently parsed in case of a webpage. + + +The metadata provided is a JSON object. + +for eg. + +``` json +{ + "classId": "21412", + "year": "fifth" +} + + ``` + +If you wish to do exact searches, please use strings. But if you want to search in a range (time, numbers, prices), you can use numbers too. + +``` json +{ + "price": 1250 +} + + ``` + +More about \[metadata filtering here\]([https://docs.supermemory.ai/essentials/metadata-filtering](https://docs.supermemory.ai/essentials/metadata-filtering)) + +The `id` is optional. If provided, supermemory will store the same ID as your internal database. This can help for retrieval purposes. + +If the `id` already exists, supermemory will update it instead.
\ No newline at end of file |