From 39003aff23d64ff1d96074d71521f6023c9bec01 Mon Sep 17 00:00:00 2001 From: Mahesh Sanikommmu Date: Sat, 16 Aug 2025 18:50:10 -0700 Subject: New Version of Supermemory Consumer App --- .../endpoints/connect/connect-app.mdx | 10 ---- .../endpoints/connect/connection-information.mdx | 5 -- .../endpoints/memory-management/delete-delete.mdx | 3 -- .../endpoints/memory-management/post-add.mdx | 59 ---------------------- .../endpoints/memory-management/put-update.mdx | 7 --- .../endpoints/search/get-fastsearch.mdx | 5 -- .../api-reference/endpoints/search/post-search.mdx | 12 ----- apps/docs/api-reference/endpoints/settings.mdx | 3 -- 8 files changed, 104 deletions(-) delete mode 100644 apps/docs/api-reference/endpoints/connect/connect-app.mdx delete mode 100644 apps/docs/api-reference/endpoints/connect/connection-information.mdx delete mode 100644 apps/docs/api-reference/endpoints/memory-management/delete-delete.mdx delete mode 100644 apps/docs/api-reference/endpoints/memory-management/post-add.mdx delete mode 100644 apps/docs/api-reference/endpoints/memory-management/put-update.mdx delete mode 100644 apps/docs/api-reference/endpoints/search/get-fastsearch.mdx delete mode 100644 apps/docs/api-reference/endpoints/search/post-search.mdx delete mode 100644 apps/docs/api-reference/endpoints/settings.mdx (limited to 'apps/docs/api-reference/endpoints') diff --git a/apps/docs/api-reference/endpoints/connect/connect-app.mdx b/apps/docs/api-reference/endpoints/connect/connect-app.mdx deleted file mode 100644 index 712c0739..00000000 --- a/apps/docs/api-reference/endpoints/connect/connect-app.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -openapi: get /connect/{app} ---- - -You may connect supermemory to other apps. -when you send a GET request to the \/connect:APP?id= endpoint, you will get a redirectURL. This is a safe URL that your users can click and select the appropriate files with. Once this is done, supermemory will periodically re-fetch and make sure that the data is always fresh. - -As of right now, these apps are supported: -- Notion - diff --git a/apps/docs/api-reference/endpoints/connect/connection-information.mdx b/apps/docs/api-reference/endpoints/connect/connection-information.mdx deleted file mode 100644 index d13af160..00000000 --- a/apps/docs/api-reference/endpoints/connect/connection-information.mdx +++ /dev/null @@ -1,5 +0,0 @@ ---- -openapi: get /connections/{connectionId} ---- - -Get the connection details using this endpoint. \ No newline at end of file diff --git a/apps/docs/api-reference/endpoints/memory-management/delete-delete.mdx b/apps/docs/api-reference/endpoints/memory-management/delete-delete.mdx deleted file mode 100644 index 57ba0ea4..00000000 --- a/apps/docs/api-reference/endpoints/memory-management/delete-delete.mdx +++ /dev/null @@ -1,3 +0,0 @@ ---- -openapi: delete /delete/{id} ---- \ No newline at end of file diff --git a/apps/docs/api-reference/endpoints/memory-management/post-add.mdx b/apps/docs/api-reference/endpoints/memory-management/post-add.mdx deleted file mode 100644 index dd03dbe4..00000000 --- a/apps/docs/api-reference/endpoints/memory-management/post-add.mdx +++ /dev/null @@ -1,59 +0,0 @@ ---- -openapi: post /add ---- - -Add a new memory with content and metadata. - -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 diff --git a/apps/docs/api-reference/endpoints/memory-management/put-update.mdx b/apps/docs/api-reference/endpoints/memory-management/put-update.mdx deleted file mode 100644 index cd8b408c..00000000 --- a/apps/docs/api-reference/endpoints/memory-management/put-update.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -openapi: put /update/{id} ---- - -Update an existing memory. -Please note that all existing metadata will be replaced with the new ones. -You can also use the \/add endpoint along with the ID specified. \ No newline at end of file diff --git a/apps/docs/api-reference/endpoints/search/get-fastsearch.mdx b/apps/docs/api-reference/endpoints/search/get-fastsearch.mdx deleted file mode 100644 index 8e088e35..00000000 --- a/apps/docs/api-reference/endpoints/search/get-fastsearch.mdx +++ /dev/null @@ -1,5 +0,0 @@ ---- -openapi: get /fastsearch ---- - -Fast, lossy search using quantized embeddings. This can be used in case your app has text completions, or when searching fast is absolutely necessary. \ No newline at end of file diff --git a/apps/docs/api-reference/endpoints/search/post-search.mdx b/apps/docs/api-reference/endpoints/search/post-search.mdx deleted file mode 100644 index 72352e4a..00000000 --- a/apps/docs/api-reference/endpoints/search/post-search.mdx +++ /dev/null @@ -1,12 +0,0 @@ ---- -openapi: post /search ---- - -Search through documents with metadata filtering. - -Body: -`q`: Your search query - -`limit`: Number of documents you want to get - -`filters`: Filters can be applied as `AND, OR, negate, numeric` types. You can read more about it here - \[metadata filtering here\]([https://docs.supermemory.ai/essentials/metadata-filtering](https://docs.supermemory.ai/essentials/metadata-filtering)) diff --git a/apps/docs/api-reference/endpoints/settings.mdx b/apps/docs/api-reference/endpoints/settings.mdx deleted file mode 100644 index 89120be7..00000000 --- a/apps/docs/api-reference/endpoints/settings.mdx +++ /dev/null @@ -1,3 +0,0 @@ ---- -openapi: put /settings ---- \ No newline at end of file -- cgit v1.2.3