-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Update vertex.mdx #763
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Update vertex.mdx #763
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -50,4 +50,4 @@ export VERTEXAI_LOCATION="global" | |||||
| ## Prerequisites | ||||||
|
|
||||||
| 1. Enable the Vertex AI API in your Google Cloud project | ||||||
| 2. Ensure your account has the `Vertex AI User` role | ||||||
| 2. Ensure your account has the `Agent Platform User` role (`roles/aiplatform.user`) | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Prompt To Fix With AIThis is a comment left during a code review.
Path: docs/llm-providers/vertex.mdx
Line: 53
Comment:
**Use Vertex role name** The role ID `roles/aiplatform.user` is correct, but the display name shown here can send users to the wrong IAM search term. In the Vertex AI setup flow, users searching by role name need `Vertex AI User`; searching for `Agent Platform User` can return no matching role even though the ID points to the right permission set.
```suggestion
2. Ensure your account has the `Vertex AI User` role (`roles/aiplatform.user`)
```
How can I resolve this? If you propose a fix, please make it concise.Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time! |
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This page is for the Vertex AI provider, but the prerequisite now leads with
Agent Platform User. A user searching IAM by that display name during Vertex AI setup may miss the expectedVertex AI Userrole and choose a broader role instead, even though the role ID is correct.Prompt To Fix With AI