@tambo-ai/react 0.41.0 → 0.41.2
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/README.md +10 -15
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,24 +1,20 @@
|
|
|
1
|
-
# Tambo React SDK
|
|
1
|
+
# Tambo AI React SDK
|
|
2
2
|
|
|
3
3
|
Tambo allows AI models to dynamically render React components in response to user messages, enabling AI assistants to display interactive widgets, charts, forms, and other UI elements instead of just text. Tambo is a great way to add generative UI to your AI assistant, copilot, or agent.
|
|
4
4
|
|
|
5
5
|
This package provides react hooks to talk to the Tambo API and render custom components inline, but does not provide any UI components on its own. For pre-built UI components that use this package, see [tambo-ui](https://ui.tambo.co).
|
|
6
6
|
|
|
7
|
-
## Build with
|
|
7
|
+
## Build apps with Generative UI and MCP
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+

|
|
10
10
|
|
|
11
|
-
[
|
|
12
|
-
|
|
13
|
-
### Creating a new project
|
|
14
|
-
|
|
15
|
-
You can create a new project using our MCP template:
|
|
11
|
+
Get started using our [AI chat template](https://github.com/tambo-ai/tambo-template):
|
|
16
12
|
|
|
17
13
|
```bash
|
|
18
|
-
npx tambo create-app -
|
|
14
|
+
npx tambo create-app my-tambo-app
|
|
19
15
|
```
|
|
20
16
|
|
|
21
|
-
This will create a new
|
|
17
|
+
This will create a new NextJS project with Tambo pre-configured, and then step you through the process of setting up a Tambo project, including signing up for an API key, and adding it to `.env.local`.
|
|
22
18
|
|
|
23
19
|
### Adding components to an existing project
|
|
24
20
|
|
|
@@ -188,11 +184,10 @@ function ChatInterface() {
|
|
|
188
184
|
|
|
189
185
|
### Templates
|
|
190
186
|
|
|
191
|
-
| App
|
|
192
|
-
|
|
|
193
|
-
| [
|
|
194
|
-
| [
|
|
195
|
-
| [Conversational Form](https://github.com/tambo-ai/conversational-form) | Collect information with generative UX |
|
|
187
|
+
| App | Description |
|
|
188
|
+
| ------------------------------------------------------------------------ | ---------------------------------------------- |
|
|
189
|
+
| [AI Chat with Generative UI](https://github.com/tambo-ai/tambo-template) | Get started with Generative UX, tools, and MCP |
|
|
190
|
+
| [Conversational Form](https://github.com/tambo-ai/conversational-form) | Collect information with generative UX |
|
|
196
191
|
|
|
197
192
|
Check out our UI library [tambo-ui](https://ui.tambo.co) for components that leverage tambo.
|
|
198
193
|
|