-
Notifications
You must be signed in to change notification settings - Fork 1
feat(deepinfra): update model YAMLs [bot] #368
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 |
|---|---|---|
|
|
@@ -3,6 +3,8 @@ costs: | |
| region: "*" | ||
| modalities: | ||
| input: | ||
| - text | ||
| output: | ||
| - image | ||
| mode: image | ||
| model: Bria/Bria-3.2 | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,6 +4,8 @@ costs: | |
| modalities: | ||
| input: | ||
| - image | ||
| output: | ||
| - image | ||
| mode: image | ||
| model: Bria/blur_background | ||
| sources: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,6 +4,8 @@ costs: | |
| modalities: | ||
| input: | ||
| - image | ||
| output: | ||
| - image | ||
| mode: image | ||
| model: Bria/enhance | ||
| sources: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,6 +4,8 @@ costs: | |
| modalities: | ||
| input: | ||
| - image | ||
| output: | ||
| - image | ||
| mode: image | ||
| model: Bria/expand | ||
| sources: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,7 @@ | ||
| modalities: | ||
| input: | ||
| - text | ||
| output: | ||
| - image | ||
| mode: image | ||
| model: Bria/fibo | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,8 @@ | ||
| modalities: | ||
| input: | ||
| - text | ||
| - image | ||
| output: | ||
| - image | ||
| mode: image | ||
| model: Bria/fibo_edit | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,6 +4,8 @@ costs: | |
| modalities: | ||
| input: | ||
| - image | ||
| output: | ||
| - image | ||
| mode: image | ||
| model: Bria/replace_background | ||
| sources: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,6 +4,8 @@ costs: | |
| modalities: | ||
| input: | ||
| - image | ||
| output: | ||
| - image | ||
| mode: image | ||
| model: ClarityAI/crystal | ||
| sources: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,19 @@ | ||
| costs: | ||
| - cache_read_input_token_cost: 2.99999997e-8 | ||
| - cache_read_input_token_cost: 3.e-8 | ||
| input_cost_per_token: 2.7e-7 | ||
| output_cost_per_token: 9.5e-7 | ||
| region: "*" | ||
| features: | ||
| - function_calling | ||
| - prompt_caching | ||
| - structured_output | ||
| limits: | ||
| context_window: 196608 | ||
| max_output_tokens: 131072 | ||
| max_tokens: 196608 | ||
|
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. MiniMax-M2.5 lost max_output_tokens and max_tokens limitsHigh Severity The |
||
| modalities: | ||
| input: | ||
| - text | ||
| output: | ||
| - text | ||
| mode: chat | ||
| model: MiniMaxAI/MiniMax-M2.5 | ||
| sources: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,6 +4,8 @@ costs: | |
| modalities: | ||
| input: | ||
| - image | ||
| output: | ||
| - image | ||
| mode: image | ||
| model: Qwen/Qwen-Image-Edit | ||
| sources: | ||
|
|
||


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.
Seed-2.0-mini lost max_tokens without adding max_output_tokens
Medium Severity
The
max_tokens: 256000field was removed fromlimitswithout adding amax_output_tokensvalue, leaving onlycontext_window: 256000. The sibling modelByteDance/Seed-1.8retains bothmax_output_tokens: 256000andmax_tokens: 256000. This data loss removes output token limit information for this model.