firebase-ai-logic-basics

Compétence officielle pour intégrer Firebase AI Logic (API Gemini) dans les applications web. Couvre la configuration, l'inférence multimodale, la sortie structurée et la sécurité.

npx skills add https://github.com/firebase/skills --skill firebase-ai-logic-basics

Firebase AI Logic Basics

Overview

Firebase AI Logic is a product of Firebase that allows developers to add gen AI to their mobile and web apps using client-side SDKs. You can call Gemini models directly from your app without managing a dedicated backend. Firebase AI Logic, which was previously known as "Vertex AI for Firebase", represents the evolution of Google's AI integration platform for mobile and web developers.

It supports the two Gemini API providers:

  • Gemini Developer API: It has a free tier ideal for prototyping, and pay-as-you-go for production
  • Vertex AI Gemini API: Ideal for scale with enterprise-grade production readiness, requires Blaze plan

Use the Gemini Developer API as a default, and only Vertex AI Gemini API if the application requires it.

Setup & Initialization

Prerequisites

  • Before starting, ensure you have Node.js 16+ and npm installed. Install them if they aren’t already available.
  • Identify the platform the user is interested in building on prior to starting: Android, iOS, Flutter or Web.
  • If their platform is unsupported, Direct the user to Firebase Docs to learn how to set up AI Logic for their application (share this link with the user https://firebase.google.com/docs/ai-logic/get-started)

Installation

The library is part of the standard Firebase Web SDK.

npm install -g firebase@latest

If you're in a firebase directory (with a firebase.json) the currently selected project will be marked with "current" using this command:

npx -y firebase-tools@latest projects:list

Ensure there's at least one app associated with the current project

npx -y firebase-tools@latest apps:list

Initialize AI logic SDK with the init command

npx -y firebase-tools@latest init ailogic

This will automatically enable the Gemini Developer API in the Firebase console.

More info in Firebase AI Logic Getting Started

Core Capabilities

[!WARNING] CRITICAL: Use current model names: Always check the Firebase AI Logic Models documentation for the currently supported model names. Do NOT use gemini-2.0-pro or gemini-2.0-flash or other older models that are shutdown.

Text-Only Generation

Multimodal (Text + Images/Audio/Video/PDF input)

Firebase AI Logic allows Gemini models to analyze image files directly from your app. This enables features like creating captions, answering questions about images, detecting objects, and categorizing images. Beyond images, Gemini can analyze other media types like audio, video, and PDFs by passing them as inline data with their MIME type. For files larger than 20 megabytes (which can cause HTTP 413 errors as inline data), store them in Cloud Storage for Firebase and pass their URLs to the Gemini Developer API.

Chat Session (Multi-turn)

Maintain history automatically using startChat.

Streaming Responses

To improve the user experience by showing partial results as they arrive (like a typing effect), use generateContentStream instead of generateContent for faster display of results.

Generate Images with Nano Banana

[!WARNING] Use current Image model names: Always check the Firebase AI Logic Models documentation for the currently supported image generation (Nano Banana) model names.

  • Requires an upgraded Blaze pay-as-you-go billing plan.

Search Grounding with the built in googleSearch tool

Supported Platforms and Frameworks

Supported Platforms and Frameworks include Kotlin and Java for Android, Swift for iOS, JavaScript for web apps, Dart for Flutter, and C Sharp for Unity.

Advanced Features

Structured Output (JSON)

Enforce a specific JSON schema for the response.

On-Device AI (Hybrid)

Hybrid on-device inference for web apps, where the Firebase Javascript SDK automatically checks for Gemini Nano's availability (after installation) and switches between on-device or cloud-hosted prompt execution. This requires specific steps to enable model usage in the Chrome browser, more info in the hybrid-on-device-inference documentation.

Security & Production

App Check

[!WARNING] Critical Safety Requirement: In order to use AI Logic safely, you MUST set up App Check on your app. This prevents unauthorized clients from using your API quota and accessing your backend resources.

See App Check with reCAPTCHA Enterprise for setup instructions.

Remote Config

Consider that you do not need to hardcode model names (e.g., a specific model version string). Use Firebase Remote Config to update model versions dynamically without deploying new client code. See Changing model names remotely

[!WARNING] CRITICAL: Backend Provisioning Required For all platforms (Flutter, Android, iOS, Web), you MUST run npx firebase-tools init ailogic to provision the service. flutterfire configure ONLY handles client configuration and does NOT enable the AI service, leading to PERMISSION_DENIED errors.

Initialization Code References

Language, Framework, PlatformGemini API providerContext URL
Web Modular APIGemini Developer API (Developer API)firebase://docs/ai-logic/get-started
iOS (Swift)Gemini Developer APIios_setup.md
Flutter (Dart)Gemini Developer APIflutter_setup.md

[!WARNING] CRITICAL: Use current model names: Always check the Firebase AI Logic Models documentation for the currently supported model names. Do NOT use gemini-2.0-pro or gemini-2.0-flash or other older models that are shutdown.

References

Web SDK code examples and usage patterns iOS SDK code examples and usage patterns Flutter SDK code examples and usage patterns

Android (Kotlin) SDK usage patterns

Plus de skills de firebase

firebase-remote-config-basics
firebase
Guide complet pour Firebase Remote Config, incluant la gestion des modèles et l'utilisation du SDK. Utilisez cette compétence lorsque l'utilisateur a besoin d'aide pour configurer Remote Config, gérer les indicateurs de fonctionnalités ou mettre à jour dynamiquement le comportement de l'application.
officialdevelopmentapi
developing-genkit-dart
firebase
SDK IA unifié pour Dart permettant la génération de code, les sorties structurées, les outils, les flux et les agents. Fournit des API centrales pour la génération, la définition d'outils, l'orchestration de flux, les embeddings et le streaming avec une interface unique. Inclut 8+ plugins pour les fournisseurs LLM (Google Gemini, Anthropic Claude, OpenAI GPT), Firebase AI, Model Context Protocol, l'intégration du navigateur Chrome et l'hébergement de serveur HTTP via Shelf. CLI intégré avec interface utilisateur de développement local pour l'exécution de flux, le traçage, l'expérimentation de modèles et...
official
developing-genkit-go
firebase
Développez des applications alimentées par l'IA en utilisant Genkit en Go. Utilisez lorsque l'utilisateur demande de créer des fonctionnalités d'IA, des agents, des flux ou des outils en Go avec Genkit, ou lorsque vous travaillez…
official
developing-genkit-js
firebase
Créez des applications Node.js/TypeScript alimentées par l'IA avec les flux, outils et support multi-modèle de Genkit. Genkit est indépendant du fournisseur ; il prend en charge Google AI, OpenAI, Anthropic, Ollama et d'autres fournisseurs de LLM via des plugins. Définissez des flux avec des schémas typés sécurisés utilisant Zod, exécutez des requêtes de génération et composez des workflows IA multi-étapes en TypeScript. Nécessite Genkit CLI v1.29.0+ ; des changements majeurs récents de l'API signifient que vous devez consulter genkit docs:read et common-errors.md pour les modèles actuels, et non les connaissances antérieures...
official
developing-genkit-python
firebase
Développez des applications alimentées par l'IA en utilisant Genkit en Python. Utilisez lorsque l'utilisateur pose des questions sur Genkit, les agents IA, les flux ou les outils en Python, ou lorsqu'il rencontre Genkit…
official
firebase-ai-logic
firebase
We need to translate the given text from English to French. The text describes a client-side Gemini integration for web apps. We must preserve the name "firebase-ai-logic" but it's not in the text, so we don't include it. We translate only the text inside <text>. No extra labels. Keep technical terms like "Gemini", "Gemini Nano", "Chrome", "Cloud Storage", "App Check", "JSON", "multimodal", "streaming", "hybrid execution", "on-device inference", "fallback", etc. Translate the rest naturally. The text: "Client-side Gemini integration for web apps with multimodal inference, streaming, and on-device hybrid execution. Supports text-only and multimodal inputs (images, audio, video, PDFs); files over 20 MB route through Cloud Storage Includes chat sessions with automatic history, streaming responses for real-time display, and structured JSON output enforcement Offers hybrid on-device inference via Gemini Nano in Chrome, with automatic fallback to cloud execution Requires App Check for production..." We need to
official
firebase-ai-logic-basics
firebase
Compétence officielle pour intégrer Firebase AI Logic (API Gemini) dans les applications web. Couvre la configuration, l'inférence multimodale, la sortie structurée et la sécurité.
official
firebase-app-hosting-basics
firebase
Déployez et gérez des applications web full-stack avec Firebase App Hosting en utilisant Next.js, Angular et d'autres frameworks pris en charge. Nécessite un projet Firebase avec le plan tarifaire Blaze ; prend en charge les workflows de rendu côté serveur (SSR) et de régénération statique incrémentielle (ISR). Déployez via la configuration firebase.json avec un fichier apphosting.yaml optionnel pour la configuration backend, ou activez le déploiement automatisé "git push to deploy" via l'intégration GitHub. Inclut la gestion des secrets via des commandes CLI pour un accès sécurisé aux clés sensibles...
official