Skip to content

Commit 9c8e1e0

Browse files
authored
Merge branch 'anomalyco:dev' into dev
2 parents c450a6f + 30d4220 commit 9c8e1e0

420 files changed

Lines changed: 6730 additions & 327 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

packages/core/src/family.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export const ModelFamilyValues = [
1414
"gpt-mini",
1515
"gpt-nano",
1616
"gpt-oss",
17+
"gpt-image",
1718

1819
// OpenAI o-series (reasoning models)
1920
"o",
@@ -46,6 +47,7 @@ export const ModelFamilyValues = [
4647

4748
// Alibaba Qwen
4849
"qwen",
50+
"qwen-free",
4951

5052
// DeepSeek
5153
"deepseek",
@@ -196,6 +198,8 @@ export const ModelFamilyValues = [
196198

197199
// Mimo
198200
"mimo",
201+
"mimo-pro",
202+
"mimo-omni",
199203
"mimo-pro-free",
200204
"mimo-omni-free",
201205
"mimo-flash-free",
@@ -374,6 +378,15 @@ export const ModelFamilyValues = [
374378

375379
// Writer
376380
"palmyra",
381+
382+
// ALLaM
383+
"allam",
384+
385+
// Canopy Labs
386+
"canopylabs",
387+
388+
// Groq
389+
"groq",
377390
] as const;
378391

379392
export const ModelFamily = z.enum(ModelFamilyValues);

providers/aihubmix/provider.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name = "AIHubMix"
2-
npm = "@ai-sdk/openai-compatible"
2+
npm = "@aihubmix/ai-sdk-provider"
33
env = ["AIHUBMIX_API_KEY"]
4-
api = "https://aihubmix.com/v1"
54
doc = "https://docs.aihubmix.com"
65

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name = "MiniMax-M2.7"
2+
family = "minimax"
3+
release_date = "2026-03-18"
4+
last_updated = "2026-03-18"
5+
attachment = false
6+
reasoning = true
7+
temperature = true
8+
tool_call = true
9+
open_weights = true
10+
11+
[cost]
12+
input = 0.30
13+
output = 1.20
14+
cache_read = 0.06
15+
cache_write = 0.375
16+
17+
[limit]
18+
context = 204_800
19+
output = 131_072
20+
21+
[modalities]
22+
input = ["text"]
23+
output = ["text"]
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name = "Qwen3.6 Plus"
2+
family = "qwen"
3+
release_date = "2026-04-02"
4+
last_updated = "2026-04-02"
5+
attachment = false
6+
reasoning = true
7+
temperature = true
8+
knowledge = "2025-04"
9+
tool_call = true
10+
open_weights = false
11+
12+
[cost]
13+
input = 0.276
14+
output = 1.651
15+
cache_read = 0.028
16+
cache_write = 0.344
17+
18+
[limit]
19+
context = 1_000_000
20+
output = 65_536
21+
22+
[modalities]
23+
input = ["text", "image", "video"]
24+
output = ["text"]
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name = "Qwen3.6 Plus"
2+
family = "qwen"
3+
release_date = "2026-04-02"
4+
last_updated = "2026-04-02"
5+
attachment = false
6+
reasoning = true
7+
temperature = true
8+
knowledge = "2025-04"
9+
tool_call = true
10+
open_weights = false
11+
12+
[cost]
13+
input = 0
14+
output = 0
15+
cache_read = 0
16+
cache_write = 0
17+
18+
[limit]
19+
context = 1_000_000
20+
output = 65_536
21+
22+
[modalities]
23+
input = ["text", "image", "video"]
24+
output = ["text"]
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name = "Qwen3.6 Plus"
2+
family = "qwen"
3+
release_date = "2026-04-02"
4+
last_updated = "2026-04-02"
5+
attachment = false
6+
reasoning = true
7+
temperature = true
8+
knowledge = "2025-04"
9+
tool_call = true
10+
open_weights = false
11+
12+
[cost]
13+
input = 0
14+
output = 0
15+
cache_read = 0
16+
cache_write = 0
17+
18+
[limit]
19+
context = 1_000_000
20+
output = 65_536
21+
22+
[modalities]
23+
input = ["text", "image", "video"]
24+
output = ["text"]
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name = "Qwen3.6 Plus"
2+
family = "qwen"
3+
release_date = "2026-04-02"
4+
last_updated = "2026-04-02"
5+
attachment = false
6+
reasoning = true
7+
temperature = true
8+
knowledge = "2025-04"
9+
tool_call = true
10+
open_weights = false
11+
12+
[cost]
13+
input = 0.276
14+
output = 1.651
15+
cache_read = 0.028
16+
cache_write = 0.344
17+
18+
[limit]
19+
context = 1_000_000
20+
output = 65_536
21+
22+
[modalities]
23+
input = ["text", "image", "video"]
24+
output = ["text"]

providers/amazon-bedrock/models/anthropic.claude-haiku-4-5-20251001-v1:0.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ attachment = true
66
reasoning = true
77
temperature = true
88
tool_call = true
9+
structured_output = true
910
knowledge = "2025-02-28"
1011
open_weights = false
1112

providers/amazon-bedrock/models/anthropic.claude-opus-4-5-20251101-v1:0.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ attachment = true
66
reasoning = true
77
temperature = true
88
tool_call = true
9+
structured_output = true
910
knowledge = "2025-03-31"
1011
open_weights = false
1112

providers/amazon-bedrock/models/anthropic.claude-opus-4-6-v1.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ attachment = true
66
reasoning = true
77
temperature = true
88
tool_call = true
9+
structured_output = true
910
knowledge = "2025-05"
1011
open_weights = false
1112

0 commit comments

Comments
 (0)