-
Notifications
You must be signed in to change notification settings - Fork 3
feat(aws-bedrock): update model YAMLs [bot] #1603
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
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 |
|---|---|---|
|
|
@@ -30,7 +30,6 @@ limits: | |
| modalities: | ||
| input: | ||
| - text | ||
| - image | ||
| output: | ||
| - embedding | ||
| mode: embedding | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,12 +5,15 @@ costs: | |
| - input_cost_per_token: 4.5e-7 | ||
| output_cost_per_token: 0.0000018 | ||
| region: us-east-2 | ||
| - region: us-east-1 # not found in official docs | ||
| - region: sa-east-1 # not found in official docs | ||
| - input_cost_per_token: 7e-7 | ||
| output_cost_per_token: 0.00000279 | ||
| region: eu-west-2 | ||
| - input_cost_per_token: 4.5e-7 | ||
| output_cost_per_token: 0.0000018 | ||
| region: eu-north-1 | ||
| - region: ap-southeast-4 # not found in official docs | ||
|
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. Region costs missing token ratesMedium Severity New Reviewed by Cursor Bugbot for commit 1018200. Configure here. |
||
| - input_cost_per_token: 4.7e-7 | ||
| output_cost_per_token: 0.00000187 | ||
| region: ap-southeast-3 | ||
|
|
@@ -41,6 +44,8 @@ params: | |
| maxValue: 16000 | ||
| minValue: 1 | ||
| provisioning: serverless | ||
| removeParams: | ||
| - reasoning_effort | ||
| sources: | ||
| - https://docs.aws.amazon.com/bedrock/latest/userguide/model-card-qwen-qwen3-coder-480b-a35b-instruct.html | ||
| status: active | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,7 +12,6 @@ features: | |
| - function_calling | ||
| - tool_choice | ||
| - system_messages | ||
| - json_output | ||
|
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. Pixtral US drops json_outputLow Severity This commit removes the Reviewed by Cursor Bugbot for commit 1018200. Configure here. |
||
| limits: | ||
| context_window: 128000 | ||
| max_input_tokens: 128000 | ||
|
|
@@ -32,6 +31,8 @@ params: | |
| maxValue: 16384 | ||
| minValue: 1 | ||
| provisioning: serverless | ||
| removeParams: | ||
| - reasoning_effort | ||
| sources: | ||
| - https://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters-mistral-pixtral-large.html | ||
| - https://docs.aws.amazon.com/bedrock/latest/userguide/model-card-mistral-ai-pixtral-large.html | ||
|
|
||


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.
Nemotron 30B wrong regional rates
Medium Severity
eu-north-1,eu-central-1, andap-southeast-3were added withinput_cost_per_token1.8e-7andoutput_cost_per_token7.8e-7, roughly 2.5× this model’seu-west-1rates (7e-8/2.8e-7). The siblingnvidia.nemotron-nano-12b-v2YAML uses the same per-token values for those regions as foreu-west-1.Reviewed by Cursor Bugbot for commit 1018200. Configure here.