Fix VertexAPIs research docs and stale helper references#5
Open
obdagli wants to merge 3 commits intosametakofficial:mainfrom
Open
Fix VertexAPIs research docs and stale helper references#5obdagli wants to merge 3 commits intosametakofficial:mainfrom
obdagli wants to merge 3 commits intosametakofficial:mainfrom
Conversation
Author
|
Addressing follow-up review feedback:
I also re-verified that: python3 vertexapis-research/aiplatform_runner.py --helpworks from the repo root. |
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
This PR fixes two VertexAPIs documentation problems in the research docs:
translate.vertexapis.comdocs were conflating the working legacy path family (/language/translate/v2) with the non-working plain root/v2paths.CHEATSHEET.mdandQUICK_START.mdreferenced helper files that are not present in the repo snapshot.Changes
translate-vertexapis-com.mdso it distinguishes:/language/translate/v2,/language/translate/v2/languages/v2,/v2/detect,/v2/languagesv3,v3beta1vertexapis-research/CHEATSHEET.mdwith repo-contained commands based onaiplatform_runner.pyvertexapis-research/QUICK_START.mdwith repo-contained commands based onaiplatform_runner.pyVerification
Live-verified on 2026-03-16 with a working local key:
POST /language/translate/v2->200GET /language/translate/v2/languages->200POST /v2->404GET /v2/languages->404POST /v2/detect->404POST /v3/projects/vertex/locations/us-central1:translateText->200POST /v3beta1/projects/vertex/locations/us-central1:translateText->200Also verified that
python3 vertexapis-research/aiplatform_runner.py --helpstill runs.Closes #3
Closes #4