-
-
Notifications
You must be signed in to change notification settings - Fork 3
fix: clean up OpenRouter-generated provider configs #37
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
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -307,3 +307,44 @@ supports_tools = true | |
| supports_vision = false | ||
| supports_streaming = true | ||
| aliases = ["phi-4-mini"] | ||
|
|
||
| [[models]] | ||
| id = "nvidia/nemotron-3-nano-30b-a3b" | ||
|
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.
The new NVIDIA entries only keep prefixed IDs ( Useful? React with 👍 / 👎. |
||
| display_name = "Nvidia: Nemotron 3 Nano 30B" | ||
| tier = "fast" | ||
| context_window = 131072 | ||
| max_output_tokens = 32768 | ||
| input_cost_per_m = 0.0 | ||
| output_cost_per_m = 0.0 | ||
| supports_streaming = true | ||
|
|
||
| [[models]] | ||
| id = "nvidia/nemotron-3-super-120b-a12b" | ||
| display_name = "Nvidia: Nemotron 3 Super 120B" | ||
| tier = "smart" | ||
| context_window = 131072 | ||
| max_output_tokens = 32768 | ||
| input_cost_per_m = 0.0 | ||
| output_cost_per_m = 0.0 | ||
| supports_streaming = true | ||
|
|
||
| [[models]] | ||
| id = "nvidia/nemotron-nano-12b-v2-vl" | ||
| display_name = "Nvidia: Nemotron Nano 12B V2 VL" | ||
| tier = "fast" | ||
| context_window = 131072 | ||
| max_output_tokens = 32768 | ||
| input_cost_per_m = 0.0 | ||
| output_cost_per_m = 0.0 | ||
| supports_vision = true | ||
| supports_streaming = true | ||
|
|
||
| [[models]] | ||
| id = "nvidia/nemotron-nano-9b-v2" | ||
| display_name = "Nvidia: Nemotron Nano 9B V2" | ||
| tier = "fast" | ||
| context_window = 131072 | ||
| max_output_tokens = 32768 | ||
| input_cost_per_m = 0.0 | ||
| output_cost_per_m = 0.0 | ||
| supports_streaming = true | ||
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 migration introduces
bedrock/amazon...IDs but removes the standalone Amazon provider, so previously valid IDs (nova-2-lite-v1,nova-lite-v1,nova-micro-v1,nova-premier-v1,nova-pro-v1) disappear with no alias bridge. Any config or experiment pinned to those IDs will fail model lookup after this commit. Fresh evidence in this revision is that these old IDs are absent from the remaining provider TOMLs andaliases.toml.Useful? React with 👍 / 👎.