@assistant-ui/mcp-docs-server 0.1.10 → 0.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.docs/organized/code-examples/with-ai-sdk-v5.md +23 -23
- package/.docs/organized/code-examples/with-assistant-transport.md +26 -26
- package/.docs/organized/code-examples/with-cloud.md +19 -19
- package/.docs/organized/code-examples/with-external-store.md +16 -16
- package/.docs/organized/code-examples/with-ffmpeg.md +20 -20
- package/.docs/organized/code-examples/with-langgraph.md +20 -20
- package/.docs/organized/code-examples/with-parent-id-grouping.md +16 -16
- package/.docs/organized/code-examples/with-react-hook-form.md +25 -25
- package/.docs/raw/docs/cloud/persistence/langgraph.mdx +22 -2
- package/.docs/raw/docs/getting-started.mdx +544 -153
- package/.docs/raw/docs/guides/Attachments.mdx +21 -0
- package/.docs/raw/docs/runtimes/ai-sdk/use-chat.mdx +2 -2
- package/.docs/raw/docs/runtimes/custom/custom-thread-list.mdx +218 -0
- package/.docs/raw/docs/runtimes/custom/external-store.mdx +31 -24
- package/.docs/raw/docs/runtimes/mastra/separate-server-integration.mdx +8 -3
- package/.docs/raw/docs/runtimes/pick-a-runtime.mdx +1 -1
- package/.docs/raw/docs/ui/AssistantModal.mdx +21 -0
- package/.docs/raw/docs/ui/AssistantSidebar.mdx +21 -0
- package/.docs/raw/docs/ui/Attachment.mdx +21 -0
- package/.docs/raw/docs/ui/Markdown.mdx +22 -1
- package/.docs/raw/docs/ui/Mermaid.mdx +22 -1
- package/.docs/raw/docs/ui/SyntaxHighlighting.mdx +43 -2
- package/.docs/raw/docs/ui/Thread.mdx +9 -3
- package/.docs/raw/docs/ui/ThreadList.mdx +48 -2
- package/.docs/raw/docs/ui/ToolFallback.mdx +21 -0
- package/package.json +6 -6
|
@@ -214,10 +214,30 @@ export function MyRuntimeProvider({
|
|
|
214
214
|
|
|
215
215
|
Install the thread list component:
|
|
216
216
|
|
|
217
|
-
|
|
218
|
-
|
|
217
|
+
<Tabs items={["assistant-ui", "shadcn (namespace)", "shadcn"]}>
|
|
218
|
+
<Tab>
|
|
219
|
+
|
|
220
|
+
```sh
|
|
221
|
+
npx assistant-ui@latest add thread-list
|
|
222
|
+
```
|
|
223
|
+
|
|
224
|
+
</Tab>
|
|
225
|
+
<Tab>
|
|
226
|
+
|
|
227
|
+
```sh
|
|
228
|
+
npx shadcn@latest add @assistant-ui/thread-list
|
|
219
229
|
```
|
|
220
230
|
|
|
231
|
+
</Tab>
|
|
232
|
+
<Tab>
|
|
233
|
+
|
|
234
|
+
```sh
|
|
235
|
+
npx shadcn@latest add "https://r.assistant-ui.com/thread-list"
|
|
236
|
+
```
|
|
237
|
+
|
|
238
|
+
</Tab>
|
|
239
|
+
</Tabs>
|
|
240
|
+
|
|
221
241
|
Then add it to your application layout:
|
|
222
242
|
|
|
223
243
|
```tsx title="app/chat/page.tsx"
|