You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ai_builder/features/integration_shortcut.md
+15-13Lines changed: 15 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,9 @@
2
2
3
3
Reflex Build supports powerful integrations like databases, OpenAI, and Databricks, allowing you to connect external services to your app without complex setup. These integrations help you add advanced functionality—like AI-powered features, data analytics, or persistent storage—while speeding up development.
4
4
5
-
The **@** feature makes it easy to reference integrations directly while chatting with the AI Builder. By typing **@**, you can quickly insert integrations into your prompts without needing to configure them manually first.
5
+
The **Add Integrations** button makes it easy to connect external services to your app while chatting with the AI Builder. A panel with a list of available integrations will appear, you can quickly add integrations that your app can reference and connect to.
6
+
7
+
Once in your app, you can access your integrations by clicking the flow or cog icon in the bottom left inside the chat area.
6
8
7
9
```python exec
8
10
import reflex as rx
@@ -28,22 +30,22 @@ rx.el.div(
28
30
29
31
## How to Use
30
32
31
-
1. In the AI Builder chat, type **@**.
32
-
2. A **popover list** of available integrations will appear (e.g. Database, Databricks, OpenAI).
33
-
3.Select an integration from the list.
34
-
4. The integration will be inserted into your message as **@IntegrationName**.
35
-
5.Continue typing your request, and the AI Builder will use that integration context when generating.
33
+
1. In the AI Builder home, click the **Add Integrations** button. And if you're already in an app, click the flow or cog icon in the bottom left inside the chat area.
34
+
2. A list of available integrations will appear (e.g. Database, Databricks, OpenAI, etc.).
35
+
3.Click the Add button next to an integration to select it.
36
+
4. The integration will be added to your app and becomes available for connection. Then you can fill the required fields for the integration.
37
+
5.The AI Builder now knows your app has access to this integration and can generate code that uses it.
36
38
37
39
## What It Does
38
40
39
-
-**Quick Access** – No need to remember integration names.
40
-
-**Context-Aware** – The AI Builder understands that `@Database` or `@OpenAI` refers to the actual integration.
41
-
-**Faster Building** – Jump directly into using integrations in your prompts.
41
+
-**Quick Access** – Easily browse and select from available integrations.
42
+
-**Automatic Connection** – Integrations are added to your app and become available for the AI to use in generated code.
43
+
-**No Manual Setup** – Skip complex configuration—the AI Builder handles the integration setup for you.
42
44
43
45
## Common Use Cases
44
46
45
-
-**Query Data**
46
-
"Show me the top 10 users from **@Database**ordered by signup date."
47
+
-**Database Queries**
48
+
Show me the top 10 users ordered by signup date from my database.
47
49
48
-
-**Generate with AI**
49
-
"Use **@OpenAI** to summarize the user feedback table."
50
+
-**AI Features**
51
+
Create a chat application that uses OpenAI to generate responses.
Copy file name to clipboardExpand all lines: docs/ai_builder/features/knowledge.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ rx.el.div(render_image())
31
31
32
32
## How to Add Knowledge
33
33
34
-
1. In the AI Builder workspace, go to the **Knowledge** section by clicking the **`@`**symbol in the bottom-left corner inside the chat area, and selecting the **Knowledge** tab. If you haven't submitted a prompt yet, you can click the **`@ Integrations`**button in the prompt area.
34
+
1. In the AI Builder workspace, go to the **Knowledge** section by clicking the **`Context`**button in the bottom bar, and then on the top bar click the **`Knowledge`**tab.
35
35
2. Enter your rule, guideline, or context description.
36
36
3. Save the entry. The AI Builder will automatically use it when generating apps.
0 commit comments