From 8f2e3bc93f09ba37b970d92b4c574698e7a0d379 Mon Sep 17 00:00:00 2001 From: Andrew Heard Date: Thu, 15 May 2025 13:51:08 -0400 Subject: [PATCH 1/2] [Firebase AI] Update CHANGELOG entry wording --- FirebaseAI/CHANGELOG.md | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/FirebaseAI/CHANGELOG.md b/FirebaseAI/CHANGELOG.md index e2abf5120ed..d7b7ac5536e 100644 --- a/FirebaseAI/CHANGELOG.md +++ b/FirebaseAI/CHANGELOG.md @@ -1,19 +1,20 @@ # 11.13.0 -- [feature] Initial release of the Firebase AI SDK (`FirebaseAI`). This SDK - *replaces* the previous Vertex AI in Firebase SDK (`FirebaseVertexAI`) to +- [feature] Initial release of the Firebase AI Logic SDK (`FirebaseAI`). This + SDK *replaces* the previous Vertex AI in Firebase SDK (`FirebaseVertexAI`) to accommodate the evolving set of supported features and services. - - The new Firebase AI SDK provides **public preview** support for the Gemini + - The new Firebase AI Logic SDK provides **preview** support for the Gemini Developer API, including its free tier offering. - - Using the Firebase AI SDK with the Vertex AI Gemini API is still generally - available (GA). -

+ - Using the Firebase AI Logic SDK with the Vertex AI Gemini API is still + generally available (GA). + To start using the new SDK, import the `FirebaseAI` module and use the - top-level `FirebaseAI` class. + top-level `FirebaseAI` class. See details in the [migration guide + ](https://firebase.google.com/docs/vertex-ai/migrate-to-latest-sdk). - [fixed] Fixed `ModalityTokenCount` decoding when the `tokenCount` field is omitted; this occurs when the count is 0. (#14745) - [fixed] Fixed `Candidate` decoding when `SafetyRating` values are missing a - category or probability; this may occur when using `gemini-2.0-flash-exp` for - image generation. (#14817) + category or probability; this may occur when using Gemini for image + generation. (#14817) # 11.12.0 - [added] **Public Preview**: Added support for specifying response modalities From b7de86ee143654cbf1bf751004af1d9b4ba45229 Mon Sep 17 00:00:00 2001 From: Andrew Heard Date: Thu, 15 May 2025 14:16:01 -0400 Subject: [PATCH 2/2] Exclude documentation-only PRs (`.md` files only) --- .github/workflows/firebaseai.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/firebaseai.yml b/.github/workflows/firebaseai.yml index 1924ecbf2a0..0dd842615cc 100644 --- a/.github/workflows/firebaseai.yml +++ b/.github/workflows/firebaseai.yml @@ -8,6 +8,8 @@ on: - 'scripts/quickstart_build_spm.sh' - 'scripts/quickstart_spm_xcodeproj.sh' - 'Gemfile*' + # Do not run for documentation-only PRs. + - '!**.md' schedule: # Run every day at 11pm (PST) - cron uses UTC times - cron: '0 7 * * *'