diff --git a/docs/ff-integrations/ai/ai-agents.md b/docs/ff-integrations/ai/ai-agents.md index 59d7ebb7..2beb893d 100644 --- a/docs/ff-integrations/ai/ai-agents.md +++ b/docs/ff-integrations/ai/ai-agents.md @@ -19,10 +19,11 @@ Here are some examples of AI Agents: - **Smart Recipe Assistant:** An AI agent in a cooking app that suggests recipes based on ingredients users have, dietary restrictions, or meal preferences, and offers interactive cooking guidance. - **AI Tutor or Educator:** A conversational agent within educational apps that helps users learn complex topics, providing step-by-step explanations, answering follow-up questions, or adapting content to the learner’s pace. -:::info [Prerequisite] - -To use AI Agents in FlutterFlow, you need to [**connect your project to Firebase**](../firebase/connect-to-firebase-setup.md): - +:::info[Prerequisite] +Before you begin setting up AI Agents, make sure you: +1. Connect your project to Firebase by completing the [**Firebase Setup**](../firebase/connect-to-firebase-setup.md). +2. Upgrade your Firebase project to the [**Blaze Plan**](https://firebase.google.com/pricing), as we rely on [**Firebase Cloud Functions**](https://firebase.google.com/docs/functions) to handle AI-related communication securely. +3. Enable [**Firebase Authentication**](../authentication/firebase-auth/auth-initial-setup.md). This is required because Cloud Functions can only be accessed by authenticated users. ::: ## Create AI Agent @@ -132,7 +133,7 @@ Once configured, click the **Publish** button to make it live.
-:::info [For non Google Agents] +:::info[For non Google Agents] After you successfully deploy the agent, any changes made to its configuration—such as modifying the system message, model, or temperature will require you to redeploy the Agent. For Google agents, the configuration is stored at client-side, so redeployment isn't necessary. ::: diff --git a/docs/ff-integrations/payments/stripe.md b/docs/ff-integrations/payments/stripe.md index 85c1abd3..2a8731ec 100644 --- a/docs/ff-integrations/payments/stripe.md +++ b/docs/ff-integrations/payments/stripe.md @@ -40,11 +40,11 @@ While using Stripe as the payment provider, users can buy products using credit :::info[Prerequisites] -Before starting to set up payments, make sure you have, +Before starting to set up payments, make sure you: 1. Complete [**Firebase Setup**](../../ff-integrations/firebase/connect-to-firebase-setup.md) for your project. -2. Enabled [**Firebase Authentication**](../authentication/firebase-auth/auth-initial-setup.md) for your project. -3. Upgraded your Firebase project to [**Blaze Plan**](https://firebase.google.com/pricing). We use [**Firebase Cloud Functions**](https://firebase.google.com/docs/functions) to process a transaction. +2. Enable [**Firebase Authentication**](../authentication/firebase-auth/auth-initial-setup.md) for your project. +3. Upgrade your Firebase project to [**Blaze Plan**](https://firebase.google.com/pricing). We use [**Firebase Cloud Functions**](https://firebase.google.com/docs/functions) to process a transaction. :::