-
Notifications
You must be signed in to change notification settings - Fork 1
feat(databricks): update model YAMLs [bot] #367
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?
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 |
|---|---|---|
|
|
@@ -10,5 +10,14 @@ limits: | |
| max_input_tokens: 200000 | ||
| max_output_tokens: 64000 | ||
| max_tokens: 64000 | ||
| modalities: | ||
|
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. Missing context_window in claude-sonnet-4-1 model YAMLMedium Severity The |
||
| input: | ||
| - text | ||
| - image | ||
| output: | ||
| - text | ||
| mode: chat | ||
| model: databricks-claude-sonnet-4-1 | ||
| sources: | ||
| - https://platform.claude.com/docs/en/docs/about-claude/models | ||
| thinking: true | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,8 +3,11 @@ costs: | |
| output_cost_per_token: 3.e-7 | ||
| region: "*" | ||
| limits: | ||
| max_input_tokens: 131072 | ||
| max_output_tokens: 131072 | ||
| max_tokens: 131072 | ||
| context_window: 128000 | ||
|
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. Token limit fields accidentally removed from gpt-oss-20b modelHigh Severity The |
||
| modalities: | ||
| input: | ||
| - text | ||
| output: | ||
| - text | ||
| mode: chat | ||
| model: databricks-gpt-oss-20b | ||


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.
Missing context_window in claude-opus-4 model YAML
Medium Severity
The
context_windowfield was not added to this model'slimits, while every other Claude model in this PR (claude-3-7-sonnet,claude-haiku-4-5,claude-opus-4-1,claude-opus-4-5,claude-sonnet-4,claude-sonnet-4-5) receivedcontext_window: 200000. Givenmax_input_tokensis 200000, this omission appears accidental.