diff options
| author | Mahesh Sanikommmu <[email protected]> | 2025-08-16 18:50:10 -0700 |
|---|---|---|
| committer | Mahesh Sanikommmu <[email protected]> | 2025-08-16 18:50:10 -0700 |
| commit | 39003aff23d64ff1d96074d71521f6023c9bec01 (patch) | |
| tree | 3f870c04b3dce315bba1b21aa2da158494e71774 /apps/docs/essentials | |
| parent | Merge pull request #355 from supermemoryai/archive (diff) | |
| download | supermemory-39003aff23d64ff1d96074d71521f6023c9bec01.tar.xz supermemory-39003aff23d64ff1d96074d71521f6023c9bec01.zip | |
New Version of Supermemory Consumer App
Diffstat (limited to 'apps/docs/essentials')
| -rw-r--r-- | apps/docs/essentials/metadata-filtering.mdx | 78 | ||||
| -rw-r--r-- | apps/docs/essentials/pricing.mdx | 47 |
2 files changed, 0 insertions, 125 deletions
diff --git a/apps/docs/essentials/metadata-filtering.mdx b/apps/docs/essentials/metadata-filtering.mdx deleted file mode 100644 index d2df77ea..00000000 --- a/apps/docs/essentials/metadata-filtering.mdx +++ /dev/null @@ -1,78 +0,0 @@ ---- -title: "Managing Multi-User Search Results" -description: "Learn how to handle search results for different users in Supermemory" -icon: "users" ---- - -When building multi-user applications with Supermemory, you'll often need to manage data for different users accessing the same account. - -You might also want filters, like memories from **_multiple users_**, or in a certain **_time range_**, or products within a certain price category. - -You can do all this filtering using Supermemory's api. - -Here's a quick example - -```json -{ - "AND": [ - { - "filterType": "numeric", - "key": "timestamp", - "value": "1742745777", - "negate": false, - "numericOperator": ">" - }, - { - "key": "group", - "value": "jira_users", - "negate": false - }, - { - "OR": [ - { - "key": "team_name", - "value": "engineering", - "negate": false - }, - { - "key": "org_name", - "value": "supermemory", - "negate": false - } - ] - } - ] -} -``` - -You can compose these conditions together to add filtering: - -- `AND` -- `OR` -- `numeric` (greater than / less than) - -Here's an example call: - -```bash -curl --location 'https://v2.api.supermemory.ai/search' \ ---header 'x-api-key: supermemory_RXPx' \ ---header 'Content-Type: application/json' \ ---data '{ - "q": "How to use teamcity to set up a project?", - "limit": 10, - "filters": { - "AND": [ - { - "key": "book", - "value": "maths", - "negate": false - }, - { - "key": "author", - "value": "r.d. sharma", - "negate": false - } - ] - } -}' -```
\ No newline at end of file diff --git a/apps/docs/essentials/pricing.mdx b/apps/docs/essentials/pricing.mdx deleted file mode 100644 index a2167460..00000000 --- a/apps/docs/essentials/pricing.mdx +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: "Pricing" -description: "Our pricing plans" -icon: "dollar-sign" ---- - -### Free! - -Yes, everything is free & open source. -Supermemory is built by [me](https://dhravya.dev), a college student. My life situations make it very difficult and almost impossible to monetise the product. - -Any kind of sponsorships / support would mean a lot to me, and help me keep supermemory alive. - -You can sponsor on my Github sponsors page - https://github.com/sponsors/dhravya - -### How can I trust you? - -Making the product free makes it hard to trust. "How will you manage the infra?", "How will you keep the product running?" are very valid questions. - -I've got you covered. - -Supermemory has the support of [Cloudflare startups program](https://www.cloudflare.com/forstartups/), [Google Cloud startup program](https://cloud.google.com/startups) and grants by [Vercel](https://vercel.com) and other amazing companies. - -We're fully committed to keeping the product running, and happy to sign any agreements you'd like. - -### Ask - -Please email me at [email protected] if you're interested in: - -- Sponsoring the product -- Funding the product -- Signing a letter of intent for potential funding rounds -- Partnering with us - -### Self hosting guidelines - -As of right now, Supermemory is licensed under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License](https://github.com/supermemoryai/supermemory/blob/main/LICENSE) - -This means, - -- You can use the code for personal projects, given appropriate attribution. -- For non-commercial use, the code must be open source. -- Please reach out to me if you want to use the code for commercial projects. - -If you're an enterprise, please reach out to me at [email protected]. - -You can still use the API as a hosted service. |