diff options
| author | Dhravya Shah <[email protected]> | 2025-09-28 16:42:06 -0700 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2025-09-28 16:42:06 -0700 |
| commit | 2093b316d9ecb9cfa9c550f436caee08e12f5d11 (patch) | |
| tree | 07b87fbd48b0b38ef26b9d5f839ad8cd61d82331 /apps/docs/overview | |
| parent | Merge branch 'main' of https://github.com/supermemoryai/supermemory (diff) | |
| download | supermemory-2093b316d9ecb9cfa9c550f436caee08e12f5d11.tar.xz supermemory-2093b316d9ecb9cfa9c550f436caee08e12f5d11.zip | |
migrate docs to public
Diffstat (limited to 'apps/docs/overview')
| -rw-r--r-- | apps/docs/overview/use-cases.mdx | 110 | ||||
| -rw-r--r-- | apps/docs/overview/why-supermemory.mdx | 67 |
2 files changed, 177 insertions, 0 deletions
diff --git a/apps/docs/overview/use-cases.mdx b/apps/docs/overview/use-cases.mdx new file mode 100644 index 00000000..a10f9aae --- /dev/null +++ b/apps/docs/overview/use-cases.mdx @@ -0,0 +1,110 @@ +--- +title: "Use Cases" +description: "What can you do with supermemory?" +mode: "wide" +--- + +Explore what you can build with supermemory: + +<CardGroup cols="3"> + <Card title="Chat with ____" icon="message-circle"> + Quickly built apps to chat with: + + • Your Twitter bookmarks \ + • Your PDF documents \ + • Your company documentation \ + ...and more\! + </Card> + <Card title="Smart Search" icon="search"> + Search everything with AI: + + • Product recommendations \ + • Document similarity matching \ + • Research paper analysis + + ...and more\! + </Card> + <Card title="Assistants & Agents" icon="chart-line"> + Build agents with infinite context for: + + • Email management \ + • Meeting summarization \ + • Calendar organization \ + ...and more\! + </Card> + <Card title="Second Brain" icon="brain"> + Build your own second brain: + + • Organize your notes, ideas, and resources + + • Connect concepts across documents + + • Never lose track of insights or inspiration + + ...and more\! + </Card> + <Card title="Content Writing & Brand Voice" icon="pencil-line"> + For agencies and creators: + + • Maintain consistent tone and style + • Analyze your brand’s unique voice + • Write with context-aware suggestions + + ...and more\! + </Card> + <Card title="Healthcare & Medical Records" icon="hospital"> + For clinics, hospitals, and researchers: + + • Securely summarize patient records + + • Extract key info from medical history + + • Support clinical decisions with AI + + ...and more\! + </Card> + <Card title="Community & Support Chatbots" icon="users"> + For online communities and businesses: + + • Powered by your chat or forum history + + • Instant, accurate answers + + • Reduce support load + + ...and more\! + </Card> + <Card title="Education & Study Tools" icon="book"> + For students and educators: + + • Flashcards and quizzes from your notes + + • Search across textbooks and lectures + + • Personalized study assistants + + ...and more\! + </Card> + <Card title="Legal & Compliance Search" icon="scale"> + For law firms and compliance teams: + + • Search through contracts and case law + + • Extract clauses, obligations, and risks + + • Keep up with regulatory changes + + ...and more\! + </Card> + <Card title="Enterprise Knowledge Hubs" icon="briefcase-business"> + For companies and teams: + + • Centralize all internal documentation + + • Search across wikis, policies, and emails + + • Onboard new hires faster + + ...and more\! + </Card> +</CardGroup>
\ No newline at end of file diff --git a/apps/docs/overview/why-supermemory.mdx b/apps/docs/overview/why-supermemory.mdx new file mode 100644 index 00000000..c1d651a9 --- /dev/null +++ b/apps/docs/overview/why-supermemory.mdx @@ -0,0 +1,67 @@ +--- +title: "Why supermemory?" +description: "Learn the problems and challenges of building a memory layer, and how supermemory solves them!" +--- + +### The problem + +...so you want to build your own memory layer. Let's go through your decision process: + +<Steps> + <Step title="Let's choose a vector database"> + <Card title="Found a vector database?"> + - Oh no, it's way too expensive. Time to switch. + - Turns out it's painfully slow. Let's try another. + - Great, now it won't scale. Back to square one. + - The maintenance is a nightmare. Need something else. + </Card> + </Step> + <Step title="Now for the embedding model"> + <Card title="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 + </Card> + </Step> + <Step title="Time to build the memory layer"> + <CardGroup cols="1"> + <Card title="So many types of content"> + - Websites: How do you handle JavaScript? What about rate limits? + - PDFs: OCR keeps failing, text extraction is inconsistent + - Images: Need computer vision models now? + - Audio/Video: Transcription costs add up quickly + </Card> + </CardGroup> + </Step> +</Steps> + +And in the middle of all this, you're wondering... + +> "When will I actually ship my product?" + +### The solution + +If you're not a fan of reinventing the wheel, you can use supermemory. + +<CardGroup cols="1"> + <Card title="Affordable & Easy to Use" icon="banknote"> + - Start for free, scale as you grow + - Simple API, deploy in minutes + - No complex setup or maintenance + - Clear, predictable pricing + </Card> + <Card title="Simple Connectors" icon="plug"> + - Notion, Google Drive, Slack + - Web scraping and PDF processing + - Email and calendar sync + - Custom connector SDK + </Card> + <Card title="Production Ready" icon="activity"> + - Enterprise-grade security + - Sub-200ms latency at scale + - Automatic failover and redundancy + - 99.9% uptime guarantee + </Card> +</CardGroup> + +Stop reinventing the wheel. Focus on building your product while we handle the memory infrastructure.
\ No newline at end of file |