Skip to content

Commit 4319913

Browse files
authored
Merge pull request #336 from Ilia-TheNetworkFirm/feat/aws-bedrock-qwen
Add AWS Bedrock Deepseek v3.1 and Qwen models
2 parents 695ad2e + a8863ed commit 4319913

File tree

6 files changed

+107
-0
lines changed

6 files changed

+107
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ temperature = true # or false - supports temperature control
9595
knowledge = "2024-04" # Knowledge-cutoff date
9696
release_date = "2025-02-19" # First public release date
9797
last_updated = "2025-02-19" # Most recent update date
98+
open_weights = true # or false - model’s trained weights are publicly available
9899

99100
[cost]
100101
input = 3.00 # Cost per million input tokens (USD)
@@ -152,6 +153,7 @@ Models must conform to the following schema, as defined in `app/schemas.ts`.
152153
- `knowledge` _(optional)_: String — Knowledge-cutoff date in `YYYY-MM` or `YYYY-MM-DD` format
153154
- `release_date`: String — First public release date in `YYYY-MM` or `YYYY-MM-DD`
154155
- `last_updated`: String — Most recent update date in `YYYY-MM` or `YYYY-MM-DD`
156+
- `open_weights`: Boolean - Indicate the model's trained weights are publicly available
155157
- `cost.input` _(optional)_: Number — Cost per million input tokens (USD)
156158
- `cost.output` _(optional)_: Number — Cost per million output tokens (USD)
157159
- `cost.reasoning` _(optional)_: Number — Cost per million reasoning tokens (USD)
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name = "DeepSeek-V3.1"
2+
release_date = "2025-09-18"
3+
last_updated = "2025-09-18"
4+
attachment = false
5+
reasoning = true
6+
temperature = true
7+
knowledge = "2024-07"
8+
tool_call = true
9+
open_weights = true
10+
11+
[cost]
12+
input = 0.58
13+
output = 1.68
14+
15+
[limit]
16+
context = 163_840
17+
output = 81_920
18+
19+
[modalities]
20+
input = ["text"]
21+
output = ["text"]
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name = "Qwen3 235B A22B 2507"
2+
release_date = "2025-09-18"
3+
last_updated = "2025-09-18"
4+
attachment = false
5+
reasoning = false
6+
temperature = true
7+
knowledge = "2024-04"
8+
tool_call = true
9+
open_weights = true
10+
11+
[cost]
12+
input = 0.22
13+
output = 0.88
14+
15+
[limit]
16+
context = 262_144
17+
output = 131_072
18+
19+
[modalities]
20+
input = ["text"]
21+
output = ["text"]
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name = "Qwen3 32B (dense)"
2+
release_date = "2025-09-18"
3+
last_updated = "2025-09-18"
4+
attachment = false
5+
reasoning = true
6+
temperature = true
7+
knowledge = "2024-04"
8+
tool_call = true
9+
open_weights = true
10+
11+
[cost]
12+
input = 0.15
13+
output = 0.6
14+
15+
[limit]
16+
context = 16_384
17+
output = 16_384
18+
19+
[modalities]
20+
input = ["text"]
21+
output = ["text"]
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name = "Qwen3 Coder 30B A3B Instruct"
2+
release_date = "2025-09-18"
3+
last_updated = "2025-09-18"
4+
attachment = false
5+
reasoning = false
6+
temperature = true
7+
knowledge = "2024-04"
8+
tool_call = true
9+
open_weights = false
10+
11+
[cost]
12+
input = 0.15
13+
output = 0.6
14+
15+
[limit]
16+
context = 262_144
17+
output = 131_072
18+
19+
[modalities]
20+
input = ["text"]
21+
output = ["text"]
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name = "Qwen3 Coder 480B A35B Instruct"
2+
release_date = "2025-09-18"
3+
last_updated = "2025-09-18"
4+
attachment = false
5+
reasoning = false
6+
temperature = true
7+
knowledge = "2024-04"
8+
tool_call = true
9+
open_weights = true
10+
11+
[cost]
12+
input = 0.22
13+
output = 1.8
14+
15+
[limit]
16+
context = 131_072
17+
output = 65_536
18+
19+
[modalities]
20+
input = ["text"]
21+
output = ["text"]

0 commit comments

Comments
 (0)