-
Notifications
You must be signed in to change notification settings - Fork 24
PLFM-9332, PLFM-9355 - Use Sonnet 4.5 for search & grid agents #802
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
Conversation
| }, | ||
| { | ||
| "Action": [ | ||
| "aws-marketplace:ViewSubscriptions", | ||
| "aws-marketplace:Subscribe" | ||
| ], | ||
| "Resource": "*", | ||
| "Effect": "Allow", | ||
| "Condition": { | ||
| "ForAnyValue:StringEquals": { | ||
| "aws-marketplace:ProductId": "prod-xdkflymybwmvi" | ||
| } | ||
| } |
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.
The newer Claude models require a subscription to the corresponding marketplace product. This is poorly documented in AWS.
See anthropics/claude-code#9620
The product ID comes from this table: https://docs.aws.amazon.com/bedrock/latest/userguide/model-access-product-ids.html
| { | ||
| "Effect": "Allow", | ||
| "Action": [ | ||
| "s3:ListObject", |
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 is not a valid permission
- Enquote request body objects. - Add a note to not immediately validate changes, since there is a delay between the agent issuing changes and the patches being applied to the database replica
| You can query the grid using structured JSON filter objects, not SQL syntax. Each query uses predefined SelectItem and Filter types with specific concreteType values. IMPORTANT: Always use proper JSON formatting with double quotes around all property names and string values. | ||
| <query__examples> | ||
| IMPORTANT: For JSON objects, you MUST ALWAYS encode the JSON in a string. It is not necessary to double-encode objects inside of this string. Example: {"query":"{\"columnSelection\":[{\"concreteType\":\"org.sagebionetworks.repo.model.grid.query.SelectAll\"}],\"limit\":10}"} | ||
| NOTE: The results of a query will not immediately change after you make an update request, so do not attempt to verify changes immediately after you make them. |
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.
query->update
| "AutoPrepare": true, | ||
| "Description": "The agent tasked with aiding with grid data curation.", | ||
| "FoundationModel": "us.anthropic.claude-sonnet-4-20250514-v1:0", | ||
| "FoundationModel": "us.anthropic.claude-sonnet-4-5-20250929-v1:0", |
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.
I thought we were already using 4.5?
No description provided.