/** * @license * Copyright 2025 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import './polyfills'; import { ReactNativeFirebase } from '@react-native-firebase/app'; import { LiveModelParams, ModelParams, RequestOptions } from './types'; import { AI, AIOptions, ImagenModelParams } from './public-types'; import { AIError } from './errors'; import { GenerativeModel } from './models/generative-model'; import { AIModel, ImagenModel, LiveGenerativeModel, TemplateGenerativeModel, TemplateImagenModel } from './models'; export * from './public-types'; export { ChatSession, ChatSessionBase, TemplateChatSession } from './methods/chat-session'; export { LiveSession } from './methods/live-session'; export * from './requests/schema-builder'; export { ImagenImageFormat } from './requests/imagen-image-format'; export { Backend, GoogleAIBackend, VertexAIBackend, AgentPlatformBackend } from './backend'; export { GenerativeModel, AIError, AIModel, ImagenModel, LiveGenerativeModel, TemplateGenerativeModel, TemplateImagenModel, }; /** * Returns the default {@link AI} instance that is associated with the provided * {@link @firebase/app!FirebaseApp}. If no instance exists, initializes a new instance with the * default settings. * * @example * ```javascript * const ai = getAI(app); * ``` * * @example * ```javascript * // Get an AI instance configured to use the Gemini Developer API (via Google AI). * const ai = getAI(app, { backend: new GoogleAIBackend() }); * ``` * * @example * ```javascript * // Get an AI instance configured to use the Agent Platform Gemini API. * const ai = getAI(app, { backend: new AgentPlatformBackend() }); * ``` * * @param app - The {@link @firebase/app!FirebaseApp} to use. * @param options - {@link AIOptions} that configure the AI instance. * @returns The default {@link AI} instance for the given {@link @firebase/app!FirebaseApp}. * * @public */ export declare function getAI(app?: ReactNativeFirebase.FirebaseApp, options?: AIOptions): AI; /** * Returns a {@link GenerativeModel} class with methods for inference * and other functionality. * * @public */ export declare function getGenerativeModel(ai: AI, modelParams: ModelParams, requestOptions?: RequestOptions): GenerativeModel; /** * Returns an {@link ImagenModel} class with methods for using Imagen. * * @deprecated Imagen models are deprecated. Use {@link getGenerativeModel} with a Gemini image * model such as `gemini-3.1-flash-lite-image` instead. See the * {@link https://firebase.google.com/docs/ai-logic/generate-images-gemini | Gemini image generation guide}. * * Only Imagen 3 models (named `imagen-3.0-*`) are supported. * * @param ai - An {@link AI} instance. * @param modelParams - Parameters to use when making Imagen requests. * @param requestOptions - Additional options to use when making requests. * * @throws If the `apiKey` or `projectId` fields are missing in your * Firebase config. * * @beta */ export declare function getImagenModel(ai: AI, modelParams: ImagenModelParams, requestOptions?: RequestOptions): ImagenModel; /** * Returns a {@link LiveGenerativeModel} class for real-time, bidirectional communication. * * The Live API is only supported in modern browser windows and Node >= 22. * * @param ai - An {@link AI} instance. * @param modelParams - Parameters to use when setting up a {@link LiveSession}. * @throws If the `apiKey` or `projectId` fields are missing in your * Firebase config. * * @beta */ export declare function getLiveGenerativeModel(ai: AI, modelParams: LiveModelParams): LiveGenerativeModel; /** * Returns a {@link TemplateGenerativeModel} class for executing server-side Gemini templates. * * @param ai - An {@link AI} instance. * @param requestOptions - Additional options to use when making requests. * * @beta */ export declare function getTemplateGenerativeModel(ai: AI, requestOptions?: RequestOptions): TemplateGenerativeModel; /** * Returns a {@link TemplateImagenModel} class for executing server-side Imagen templates. * * @deprecated Imagen models are deprecated. Use {@link getGenerativeModel} with a Gemini image * model such as `gemini-3.1-flash-lite-image` instead. See the * {@link https://firebase.google.com/docs/ai-logic/generate-images-gemini | Gemini image generation guide}. * * @param ai - An {@link AI} instance. * @param requestOptions - Additional options to use when making requests. * * @beta */ export declare function getTemplateImagenModel(ai: AI, requestOptions?: RequestOptions): TemplateImagenModel; //# sourceMappingURL=index.d.ts.map