docs(firestore-multimodal-genai): clarify Vertex AI location vs Cloud Functions location#1105
Open
cabljac wants to merge 1 commit into
Open
docs(firestore-multimodal-genai): clarify Vertex AI location vs Cloud Functions location#1105cabljac wants to merge 1 commit into
cabljac wants to merge 1 commit into
Conversation
… Functions location Users hitting a "Publisher Model ... not found" error when using the Vertex AI provider were selecting a Cloud Functions location (such as us-west2) that is not a supported Vertex AI region. The docs did not make clear that the Cloud Functions location and the Vertex AI region are distinct, or that the "Vertex AI API Location" parameter can be used to target a supported region. - Explain the distinction and the "Publisher Model not found" cause in the LOCATION and VERTEX_AI_PROVIDER_LOCATION parameter descriptions. - Update PREINSTALL.md and README.md with the same guidance. - Refresh the outdated Vertex AI locations links. - Bump version to 1.0.8. Refs #522
b97b7c1 to
75c48fd
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Documentation fix for #522 ("Publisher Model not found" on the Multimodal Tasks with the Gemini API extension).
Users who select the Vertex AI provider and pick a Cloud Functions location that is not a supported Vertex AI region (for example
us-west2) hit aPublisher Model ... not founderror at generation time. The extension already ships aVERTEX_AI_PROVIDER_LOCATION("Vertex AI API Location") parameter that lets you target a supported region independently of the functions location, but the docs did not make the distinction clear or connect it to this error.Changes
extension.yaml: expanded theLOCATIONandVERTEX_AI_PROVIDER_LOCATIONparameter descriptions to explain that the Cloud Functions location and the Vertex AI region are distinct, that an unsupported region causes the "Publisher Model not found" error, and that "Vertex AI API Location" should be set to a supported region.PREINSTALL.mdandREADME.md: same guidance mirrored so it appears on extensions.dev.https://cloud.google.com/vertex-ai/generative-ai/docs/learn/locations.Scope
Docs only. No code or dropdown-option behavior changes. The original report also asked about removing
us-west2from the Cloud Functions location dropdown; that is a valid Cloud Functions deployment region (the problem is specific to Vertex AI availability), so this PR leaves the option in place and instead documents how to point Vertex AI at a supported region.Refs #522