Firebase Ai Logic Basics

TopTinker Aug 13, 2026 New v1.0.1 1,783 installs Sec S+ Verified source
Claude Code Cursor
Free
Open verification
AI OverviewGenerated from SKILL.md
Core usage
Firebase AI Logic lets developers add generative AI features to web and mobile apps using client-side Firebase SDKs, calling Gemini models directly without a dedicated backend. It supports text, multimodal inputs such as images and PDFs, multi-turn chat, streaming responses, image generation with Nano Banana, search grounding, structured JSON output, and optional hybrid on-device inference. Setup involves installing Firebase tools, initializing the ailogic SDK, choosing between the Gemini Developer API or Agent Platform Gemini API, and enforcing App Check for production safety.
Key advantages
It removes the need to manage a separate backend for AI calls, simplifying integration for mobile and web developers. It provides a free-tier Gemini Developer API for prototyping and an enterprise-grade Agent Platform option for scaled production, along with built-in features like streaming, structured output, and App Check integration. It supports multiple platforms, including Android, iOS, Flutter, Web, and Unity, from a single Firebase workflow.
Limitations
The Gemini Developer API requires a Firebase project and the Agent Platform Gemini API requires a Blaze pay-as-you-go plan, which may incur costs. Apps must have App Check enabled to use AI Logic safely, adding setup complexity for local development and CI environments. On-device hybrid inference requires additional Chrome-specific enablement steps and is not automatic, and large files over 20 MB must be stored in Cloud Storage rather than passed inline.
Target audience
This is for mobile and web developers who want to add Gemini-powered AI features to their applications without building or managing a dedicated AI backend. It is suitable for developers already using Firebase, especially those building on Android, iOS, Flutter, Web, or Unity. It also fits teams needing enterprise-scale AI with Firebase security controls and production readiness.
Risks & notes
Using outdated or shutdown model names, such as gemini-2.0-pro or gemini-2.0-flash, can break functionality, so developers must always check current model documentation. Failing to set up App Check can allow unauthorized clients to consume API quota and access backend resources, so it is a mandatory safety requirement. Local development and CI/CD require App Check debug tokens because standard attestation providers reject emulators and simulators, and image generation requires an upgraded Blaze plan.
DescriptionWritten by the seller

# 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
- **Agent Platform Gemini API** (formerly branded Vertex AI): Ideal for scale
with enterprise-grade production readiness, requires Blaze plan

Use the Gemini Developer API as a default, and only Agent Platform Gemini API
(formerly branded Vertex AI) 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](https://firebase.google.com/docs/ai-logic/get-started.md.txt)

## Core Capabilities

> [!WARNING] **CRITICAL: Use current model names:** Always check the
> [Firebase AI Logic Models documentation](https://firebase.google.com/docs/ai-logic/models.md.txt)
> 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](https://firebase.google.com/docs/ai-logic/models.md.txt)
> 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](https://firebase.google.com/docs/ai-logic/hybrid-on-device-inference.md.txt).

## 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](https://firebase.google.com/docs/app-check/web/recaptcha-enterprise-provider.md.txt)
for setup instructions.

#### App Check Debug Tokens for Local Development & CI/CD

Because App Check attestation providers (like Play Integrity or DeviceCheck)
reject emulators, simulators, or CI environments, you must use **App Check Debug
Tokens** during development and testing to bypass standard attestation.

##### Local Development (Auto-Generated)

1. Configure your code's App Check provider to use the debug factory:
* **Web**: Set `self.FIREBASE_APPCHECK_DEBUG_TOKEN = true;` before
initializing App Check.
* **Android**: Install `DebugAppCheckProviderFactory.getInstance()`.
* **iOS**: Set provider factory to `AppCheckDebugProviderFactory()`.
2. Run your app in the emulator/localhost.
3. Look at your runtime debugger console / Logcat logs for the generated UUID:
* *Example:* `AppCheck debug token:
"123a4567-b89c-12d3-e456-789012345678"`
4. Register this token in the Firebase Console under **Security > App Check >
Apps > Manage debug tokens**.

##### CI/CD Pipelines (Pre-Provisioned)

1. Generate and register a new debug token in the Firebase Console under
**Security > App Check > Apps > Manage debug tokens**.
2. Add this token string as an encrypted secret in your CI system (e.g.
`APP_CHECK_DEBUG_TOKEN`).
3. Configure your build to pass this secret as an environment variable to the
SDK during test execution (e.g. `self.FIREBASE_APPCHECK_DEBUG_TOKEN =
process.env.APP_CHECK_DEBUG_TOKEN`).

### 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](https://firebase.google.com/docs/ai-logic/change-model-name-remotely.md.txt)

> [!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, Gemini API Context URL

: Framework, : provider : :
: Platform : : :

Web Modular Gemini firebase://docs/ai-logic/get-started

: API : Developer : :
: : API : :
: : (Developer : :
: : API) : :

iOS (Swift) Gemini [ios_setup.md](references/ios_setup.md)

: : Developer : :
: : API : :

Flutter Gemini [flutter_setup.md](references/flutter_setup.md)

: (Dart) : Developer : :
: : API : :

> [!WARNING] **CRITICAL: Use current model names:** Always check the
> [Firebase AI Logic Models documentation](https://firebase.google.com/docs/ai-logic/models.md.txt)
> 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](references/usage_patterns_web.md)
[iOS SDK code examples and usage patterns](references/ios_setup.md)
[Flutter SDK code examples and usage patterns](references/flutter_setup.md)

[Android (Kotlin) SDK usage patterns](references/usage_patterns_android.md)

Use caseInput → Output
Input
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 a
Output
Verified guidance, commands and best practices for Firebase Ai Logic Basics, ready to paste into your agent
How it worksImport to your platform and run
Item details
Use case
AI Skills
Capability
Coding
Agents
Claude Code, Cursor
Version
1.0.1
First seen
Aug 13, 2026
Installs
1,783
License
Non-exclusive
Last update
Aug 13, 2026
InstallCompatible with agent skill ecosystem
npx skills add firebase/agent-skills --skill firebase-ai-logic-basics
Source: firebase/agent-skills
What you get
SKILL.md skill definitionCommand referenceInstallation instructionsFirebase Ai Logic Basics reference
Verified sourceOriginal project page — inspect before install
Open the original source project
Check the upstream repository, license and changelog before install
Open source
Security ScanS+Score 100/100 · 3 findings · 2026-08-15 21:36:05🤖 AI 已复核
Static analysis100
Dynamic behavior100
Dependencies100
Network100
Privacy100
Threat intel100
Findings (3)
LowDangerous code execution(reference)1 处
Dynamic code/system command execution is high-risk; avoid running unconditionally.
L159 · system (
LowHardcoded secrets(reference)1 处
Suspected hardcoded keys/passwords. Real secrets must be removed and injected via environment variables.
L150 · token: "123a4567-b89c-12d3-e456-789012345678"
LowBulk env var collection(reference)1 处
Enumerates all environment variables (may leak credentials); read only what is needed.
L163 · process.env
Security scan generated by TopTinker automated engine from SKILL.md static analysis, for pre-install reference only. Third-party skills carry their own runtime risk.
WeChat
Qizhuwang Source Code Trading Platform
2021-12-28开店时间
284商品数
认证
Guarantees
Escrow paymentOn
Platform holds funds until delivery is confirmed
Install verified
Free download - install & run before you pay
Source transparency
Original GitHub repo linked & verified
No refunds after download
Digital product - disputes arbitrated on evidence only
Enhanced protection
Trusted seller - priority arbitration within 48h, backed by platform bond
Free

Report this listing

This content is locked. Buy it once and use it forever - instant delivery after purchase.

one-time
Unlock now
Escrow payment · 7-day refund support