-
Notifications
You must be signed in to change notification settings - Fork 57
Add OpenRouter pricing for missing OpenAI models #329
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 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3246,10 +3246,14 @@ models: | |
|
|
||
| - id: openai/gpt-4.1-mini | ||
| match: | ||
| equals: openai/gpt-4.1-mini | ||
| or: | ||
| - equals: openai/gpt-4.1-mini | ||
| - equals: openai/gpt-4.1-mini-2025-04-14 | ||
| prices: | ||
| input_mtok: 0.4 | ||
| output_mtok: 1.6 | ||
| cache_read_mtok: 0.1 | ||
| prices_checked: 2026-03-29 | ||
|
|
||
| - id: openai/gpt-4.1-nano | ||
| match: | ||
|
|
@@ -3310,6 +3314,7 @@ models: | |
| - equals: openai/gpt-5.1 | ||
| - equals: openai/gpt-5.1-chat | ||
| - equals: openai/gpt-5.1-codex | ||
| - equals: openai/gpt-5-2025-08-07 | ||
|
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. 🚩 Date suffix format inconsistency across OpenRouter model aliases The newly added date-suffixed model aliases use two different date formats: dashed dates like Was this helpful? React with 👍 or 👎 to provide feedback. |
||
| prices: | ||
| input_mtok: 1.25 | ||
| cache_read_mtok: 0.125 | ||
|
|
@@ -3338,7 +3343,9 @@ models: | |
|
|
||
| - id: openai/gpt-5-mini | ||
| match: | ||
| equals: openai/gpt-5-mini | ||
| or: | ||
| - equals: openai/gpt-5-mini | ||
| - equals: openai/gpt-5-mini-2025-08-07 | ||
| prices: | ||
| input_mtok: 0.25 | ||
| cache_read_mtok: 0.025 | ||
|
|
@@ -3364,13 +3371,49 @@ models: | |
|
|
||
| - id: openai/gpt-5.1-codex-mini | ||
| match: | ||
| equals: openai/gpt-5.1-codex-mini | ||
| or: | ||
| - equals: openai/gpt-5.1-codex-mini | ||
| - equals: openai/gpt-5.1-codex-mini-20251113 | ||
| prices: | ||
| input_mtok: 0.25 | ||
| cache_read_mtok: 0.025 | ||
| output_mtok: 2 | ||
| prices_checked: 2025-11-29 | ||
|
|
||
| - id: openai/gpt-5.3-codex | ||
| match: | ||
| or: | ||
| - equals: openai/gpt-5.3-codex | ||
| - equals: openai/gpt-5.3-codex-20260224 | ||
| prices: | ||
| input_mtok: 1.75 | ||
| cache_read_mtok: 0.175 | ||
| output_mtok: 14 | ||
devin-ai-integration[bot] marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| prices_checked: 2026-03-29 | ||
|
|
||
| - id: openai/gpt-5.4 | ||
| match: | ||
| or: | ||
| - equals: openai/gpt-5.4 | ||
| - equals: openai/gpt-5.4-20260305 | ||
|
Comment on lines
+3374
to
+3399
|
||
| prices: | ||
| input_mtok: | ||
| base: 2.5 | ||
| tiers: | ||
| - start: 272000 | ||
| price: 5 | ||
| cache_read_mtok: | ||
| base: 0.25 | ||
| tiers: | ||
| - start: 272000 | ||
| price: 0.5 | ||
| output_mtok: | ||
| base: 15 | ||
| tiers: | ||
| - start: 272000 | ||
| price: 22.5 | ||
devin-ai-integration[bot] marked this conversation as resolved.
Show resolved
Hide resolved
Comment on lines
+3404
to
+3415
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. 🚩 Tiered pricing for gpt-5.4 uses a different tier threshold than existing models The new Was this helpful? React with 👍 or 👎 to provide feedback. |
||
| prices_checked: 2026-03-29 | ||
|
|
||
|
Comment on lines
+3384
to
+3417
|
||
| - id: openai/gpt-oss-120b | ||
| match: | ||
| or: | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.