diff options
| author | Dhravya Shah <[email protected]> | 2025-01-31 19:29:48 -0700 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2025-01-31 19:29:48 -0700 |
| commit | 234e7bc39aef3befb9042b185f5471613d6fda49 (patch) | |
| tree | 7e49706ebef82ffd7f5d9e6ff1e61a0b47b4dd7b | |
| parent | docs: add notes about infrastructure (diff) | |
| download | supermemory-234e7bc39aef3befb9042b185f5471613d6fda49.tar.xz supermemory-234e7bc39aef3befb9042b185f5471613d6fda49.zip | |
docs: added pricing page
| -rw-r--r-- | apps/docs/essentials/architecture.mdx | 59 | ||||
| -rw-r--r-- | apps/docs/essentials/infrastructure.mdx | 13 | ||||
| -rw-r--r-- | apps/docs/essentials/pricing.mdx | 47 | ||||
| -rw-r--r-- | apps/docs/introduction.mdx | 22 | ||||
| -rw-r--r-- | apps/docs/mint.json | 2 |
5 files changed, 118 insertions, 25 deletions
diff --git a/apps/docs/essentials/architecture.mdx b/apps/docs/essentials/architecture.mdx new file mode 100644 index 00000000..c23b74e2 --- /dev/null +++ b/apps/docs/essentials/architecture.mdx @@ -0,0 +1,59 @@ +--- +title: "How Supermemory works" +description: "A short guide to how Supermemory works" +icon: "toolbox" +--- + +Supermemory is a hosted service. This means that you don't need to worry about the infrastructure. + +but it's still good to know how it works. + + + +Supermemory has three main modules, managed by [turborepo](https://turbo.build): + +#### `apps/web`: The main web UI. + + + +Built with: + +- [Remix](https://remix.run/) +- [Hono](https://hono.dev/) +- [authkit-remix-cloudflare by Supermemory](https://github.com/supermemory/authkit-remix-cloudflare) +- [Drizzle ORM](https://drizzle.team/) +- [TailwindCSS](https://tailwindcss.com) +- [shadcn-ui](https://ui.shadcn.com) +- And some other amazing open source projects like [Plate](https://platejs.org/) and [vaul](https://vaul.emilkowal.ski/) +- Hosted on [Cloudflare Pages](https://pages.cloudflare.com/) + +#### `apps/extension`: Chrome extension + +The [chrome extension](https://supermemory.ai/extension) is one of the most important part of the setup, but is not required.This is to easily add pages to your memory. + +<img + width="290" + alt="image" + src="https://camo.githubusercontent.com/118b58b867eacccde8a316e6e791a1d095fc82d83489813b9d59549d673becf4/68747470733a2f2f692e6468722e7774662f722f436c6970626f6172645f4a616e5f32302c5f323032355f61745f342e3035e280af504d2e706e67" +/> + +> please rate the extension to improve the rating 🙏. + +Built with: + +- [Extension JS](https://extension.js.org) +- [TailwindCSS](https://tailwindcss.com) +- [React](https://react.dev/) + +#### `apps/backend`: This module handles the vector store and AI response generation + +This is where the magic happens! +Built with: + +- [Cloudflare Workers](https://workers.cloudflare.com/) +- [Postgres + Pgvector with Pgvectorscale](https://github.com/timescale/pgvectorscale) +- [Cloudflare Workflows](https://developers.cloudflare.com/queues/) +- [R2 Object storage](https://developers.cloudflare.com/r2/) +- [Markdowner by Supermemory](https://md.dhr.wtf) +- [Cloudflare KV](https://developers.cloudflare.com/kv) +- [mem0](https://app.mem0.ai) diff --git a/apps/docs/essentials/infrastructure.mdx b/apps/docs/essentials/infrastructure.mdx deleted file mode 100644 index 4c421514..00000000 --- a/apps/docs/essentials/infrastructure.mdx +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Learn how Supermemory works" -description: "A short guide to how Supermemory works" -icon: "users" ---- - -Supermemory is a hosted service. This means that you don't need to worry about the infrastructure. - -but it's still good to know how it works. - -## Infra - -
\ No newline at end of file diff --git a/apps/docs/essentials/pricing.mdx b/apps/docs/essentials/pricing.mdx new file mode 100644 index 00000000..a2167460 --- /dev/null +++ b/apps/docs/essentials/pricing.mdx @@ -0,0 +1,47 @@ +--- +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. diff --git a/apps/docs/introduction.mdx b/apps/docs/introduction.mdx index 135794a4..c05d101a 100644 --- a/apps/docs/introduction.mdx +++ b/apps/docs/introduction.mdx @@ -1,5 +1,5 @@ --- -title: Introduction - Supermemory +title: "Introduction - Supermemory" description: "Supermemory is the Memory API for the AI era." --- @@ -19,9 +19,9 @@ Introducing the Supermemory API. An _affordable_, _easy-to-use_, and _production alt="Hero Dark" /> -Trusted by Open source [8.5k+ stars](https://git.new/memory), one of the fastest [growing growing projects in Q3 2024](https://runacap.com/ross-index/q3-2024/), Product of the day on [ProductHunt](https://www.producthunt.com/posts/supermemory). +Trusted by Open source [8.5k+ stars](https://git.new/memory), one of the fastest [growing projects in Q3 2024](https://runacap.com/ross-index/q3-2024/), Product of the day on [ProductHunt](https://www.producthunt.com/posts/supermemory). -... and thousands of you! +and thousands of you! ## Why Supermemory? @@ -40,14 +40,14 @@ Trusted by Open source [8.5k+ stars](https://git.new/memory), one of the fastest </Warning> </Step> -{" "} -<Step title="Now for the embedding model"> - <Note> - Which one to choose? Unless you have a PhD in AI, good luck figuring out: - - Which model fits your use case - What are the performance tradeoffs - How to - keep up with new releases - </Note> -</Step> + <Step title="Now for the embedding model"> + <Note> + Which one to choose? Unless you have a PhD in AI, good luck figuring out: + - Which model fits your use case + - What are the performance tradeoffs + - How to keep up with new releases + </Note> + </Step> <Step title="Time to build the memory layer"> <CardGroup cols={2}> diff --git a/apps/docs/mint.json b/apps/docs/mint.json index cfc71943..586c4832 100644 --- a/apps/docs/mint.json +++ b/apps/docs/mint.json @@ -60,7 +60,7 @@ }, { "group": "Essentials", - "pages": ["essentials/distinguishing-users", "essentials/infrastructure"] + "pages": ["essentials/distinguishing-users", "essentials/architecture", "essentials/pricing"] }, { "group": "Changelog", |