Conversation
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
API: http://goto.google.com/googleai-in-vinf-api (internal)
This PR integrates support for the Google AI API alongside the existing Vertex AI backend. To accommodate this, the SDK has been refactored to use the more generic
AInaming convention instead ofVertexAI.Changes
Google AI Support
googleAIBackend()function to configure the SDK to use the Google AI API. This enables usage with models available in a free tier.googleAIMappers.ts) to translate requests and responses between the SDK's unified format (prioritizing Vertex AI) and the specific format required by the Google AI API. This handles differences in features like safety settings (methodunsupported), citation metadata (citationSourcesvscitations), and response properties (defaulting missing safety scores).AIErrorwith codeUNSUPPORTEDor logs warnings for features/properties not available or different in the Google AI backend (e.g.,SafetySetting.method, roundingtopK,Part.videoMetadata).Firebase AI Migration
VertexAItoAI(e.g.,AI,AIError,AIModel,AIErrorCode,AIOptions).export type VertexAI = AI;,export const VertexAIError = AIError;).Backend(GoogleAIBackend | VertexAIBackend) andBackendTypetypes to abstract the backend configuration.Initialization
getAI(app?, options?)function for initializing the SDK. It acceptsAIOptionsto specify the desiredbackend.getVertexAI(app?, options?)function for backward compatibility, initializing a Vertex AI backend instance.Internal
helpers.ts) for instance identifiers based on backend type and location, allowing the component system to manage different service instances.request.ts,stream-reader.ts) to handle backend differences and use the appropriate mappers.Packaging
./aiexport path infirebase/package.jsonto allow the package to be imported withfirebase/ai.Testing
googleAIBackend,vertexAIBackend), Google AI request/response mappers, and instance identifier helpers.generateContent,countTokens) using the Google AI backend path to verify request mapping and error handling.Sample usage