mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-07 08:26:15 +00:00
docs: add examples page and nav entry
This commit is contained in:
parent
9da8c9f2ee
commit
8803aa2af9
3 changed files with 53 additions and 2 deletions
|
|
@ -163,7 +163,8 @@
|
|||
"smfs/providers/vercel",
|
||||
"smfs/providers/cloudflare"
|
||||
]
|
||||
}
|
||||
},
|
||||
"smfs/examples"
|
||||
]
|
||||
}
|
||||
],
|
||||
|
|
|
|||
47
apps/docs/smfs/examples.mdx
Normal file
47
apps/docs/smfs/examples.mdx
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
---
|
||||
title: "Examples"
|
||||
sidebarTitle: "Examples"
|
||||
description: "Full working apps you can clone and run."
|
||||
icon: "code"
|
||||
---
|
||||
|
||||
Standalone example apps showing SMFS in realistic use cases. Each one is a
|
||||
complete project with its own README, dependencies, and sample data.
|
||||
|
||||
<CardGroup cols={2}>
|
||||
<Card
|
||||
title="Legal Docs Assistant"
|
||||
icon="scale-balanced"
|
||||
href="https://github.com/supermemoryai/examples/tree/main/legal-docs-assistant"
|
||||
>
|
||||
Ingest contracts into a Supermemory container, then query them with
|
||||
semantic search. Python + Anthropic SDK.
|
||||
</Card>
|
||||
<Card
|
||||
title="Docs Answering Agent"
|
||||
icon="book"
|
||||
href="https://github.com/supermemoryai/examples/tree/main/docs-answering-agent"
|
||||
>
|
||||
Ingest documentation, answer questions about it. TypeScript + Vercel AI
|
||||
SDK.
|
||||
</Card>
|
||||
<Card
|
||||
title="Customer Support Agent"
|
||||
icon="headset"
|
||||
href="https://github.com/supermemoryai/examples/tree/main/customer-support-agent"
|
||||
>
|
||||
Per-customer memory for support ticket drafting. Each customer gets their
|
||||
own container. Python + Anthropic SDK.
|
||||
</Card>
|
||||
</CardGroup>
|
||||
|
||||
All examples use the [Bash Tool](/smfs/bash-tool) — the serverless-friendly
|
||||
way to give an agent a Supermemory-backed filesystem. No mount or FUSE
|
||||
required.
|
||||
|
||||
## Running an example
|
||||
|
||||
1. Clone the [examples repo](https://github.com/supermemoryai/examples)
|
||||
2. `cd` into the example you want
|
||||
3. Follow the README — typically: install deps, copy `.env.example` to `.env`,
|
||||
fill in your API keys, run the ingest script, then run the agent
|
||||
|
|
@ -63,6 +63,9 @@ Already using a sandbox or agent platform? Jump straight to the guide for your p
|
|||
One curl, one mount, you're done.
|
||||
</Card>
|
||||
<Card title="Use the Bash Tool" icon="terminal" href="/smfs/bash-tool">
|
||||
Drop SMFS into a TypeScript agent without mounting anything.
|
||||
Drop SMFS into a TypeScript or Python agent without mounting anything.
|
||||
</Card>
|
||||
<Card title="Examples" icon="code" href="/smfs/examples">
|
||||
Full working apps you can clone and run — legal docs, support agents, and more.
|
||||
</Card>
|
||||
</CardGroup>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue