indusagi 0.13.0 → 0.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist/agent.js +34 -0
- package/dist/ai.js +34 -0
- package/dist/types/facade/ml/models.generated.d.ts +34 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.13.1]
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- **MiniMax-M3 Model**: Added `MiniMax-M3` to both `minimax` and `minimax-cn` providers in `facade/ml/models.generated.ts`.
|
|
7
|
+
- `minimax` provider: base URL `https://api.minimax.io/anthropic`
|
|
8
|
+
- `minimax-cn` provider: base URL `https://api.minimaxi.com/anthropic`
|
|
9
|
+
- Context window: 1,048,576 tokens (1M ceiling, 512K guaranteed minimum)
|
|
10
|
+
- Max output: 512,000 tokens
|
|
11
|
+
- Multimodal input: `["text", "image"]` (native multimodal from step 0)
|
|
12
|
+
- Pricing (standard ≤512K tier): input `$0.60` / output `$2.40` / cache read `$0.12` per 1M tokens
|
|
13
|
+
- Pricing (long-context 512K–1M tier): input `$1.20` / output `$4.80` / cache read `$0.24` per 1M tokens
|
|
14
|
+
- Reasoning: enabled
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
- **Version Bump**: Updated package version to `0.13.1`.
|
|
18
|
+
|
|
3
19
|
## [0.12.34]
|
|
4
20
|
|
|
5
21
|
### Added
|
package/dist/agent.js
CHANGED
|
@@ -3509,6 +3509,23 @@ var MODELS = {
|
|
|
3509
3509
|
},
|
|
3510
3510
|
contextWindow: 204800,
|
|
3511
3511
|
maxTokens: 131072
|
|
3512
|
+
},
|
|
3513
|
+
"MiniMax-M3": {
|
|
3514
|
+
id: "MiniMax-M3",
|
|
3515
|
+
name: "MiniMax-M3",
|
|
3516
|
+
api: "anthropic-messages",
|
|
3517
|
+
provider: "minimax",
|
|
3518
|
+
baseUrl: "https://api.minimax.io/anthropic",
|
|
3519
|
+
reasoning: true,
|
|
3520
|
+
input: ["text", "image"],
|
|
3521
|
+
cost: {
|
|
3522
|
+
input: 0.6,
|
|
3523
|
+
output: 2.4,
|
|
3524
|
+
cacheRead: 0.12,
|
|
3525
|
+
cacheWrite: 0
|
|
3526
|
+
},
|
|
3527
|
+
contextWindow: 1048576,
|
|
3528
|
+
maxTokens: 512e3
|
|
3512
3529
|
}
|
|
3513
3530
|
},
|
|
3514
3531
|
"minimax-cn": {
|
|
@@ -3579,6 +3596,23 @@ var MODELS = {
|
|
|
3579
3596
|
},
|
|
3580
3597
|
contextWindow: 204800,
|
|
3581
3598
|
maxTokens: 131072
|
|
3599
|
+
},
|
|
3600
|
+
"MiniMax-M3": {
|
|
3601
|
+
id: "MiniMax-M3",
|
|
3602
|
+
name: "MiniMax-M3",
|
|
3603
|
+
api: "anthropic-messages",
|
|
3604
|
+
provider: "minimax-cn",
|
|
3605
|
+
baseUrl: "https://api.minimaxi.com/anthropic",
|
|
3606
|
+
reasoning: true,
|
|
3607
|
+
input: ["text", "image"],
|
|
3608
|
+
cost: {
|
|
3609
|
+
input: 0.6,
|
|
3610
|
+
output: 2.4,
|
|
3611
|
+
cacheRead: 0.12,
|
|
3612
|
+
cacheWrite: 0
|
|
3613
|
+
},
|
|
3614
|
+
contextWindow: 1048576,
|
|
3615
|
+
maxTokens: 512e3
|
|
3582
3616
|
}
|
|
3583
3617
|
},
|
|
3584
3618
|
"mistral": {
|
package/dist/ai.js
CHANGED
|
@@ -3633,6 +3633,23 @@ var MODELS = {
|
|
|
3633
3633
|
},
|
|
3634
3634
|
contextWindow: 204800,
|
|
3635
3635
|
maxTokens: 131072
|
|
3636
|
+
},
|
|
3637
|
+
"MiniMax-M3": {
|
|
3638
|
+
id: "MiniMax-M3",
|
|
3639
|
+
name: "MiniMax-M3",
|
|
3640
|
+
api: "anthropic-messages",
|
|
3641
|
+
provider: "minimax",
|
|
3642
|
+
baseUrl: "https://api.minimax.io/anthropic",
|
|
3643
|
+
reasoning: true,
|
|
3644
|
+
input: ["text", "image"],
|
|
3645
|
+
cost: {
|
|
3646
|
+
input: 0.6,
|
|
3647
|
+
output: 2.4,
|
|
3648
|
+
cacheRead: 0.12,
|
|
3649
|
+
cacheWrite: 0
|
|
3650
|
+
},
|
|
3651
|
+
contextWindow: 1048576,
|
|
3652
|
+
maxTokens: 512e3
|
|
3636
3653
|
}
|
|
3637
3654
|
},
|
|
3638
3655
|
"minimax-cn": {
|
|
@@ -3703,6 +3720,23 @@ var MODELS = {
|
|
|
3703
3720
|
},
|
|
3704
3721
|
contextWindow: 204800,
|
|
3705
3722
|
maxTokens: 131072
|
|
3723
|
+
},
|
|
3724
|
+
"MiniMax-M3": {
|
|
3725
|
+
id: "MiniMax-M3",
|
|
3726
|
+
name: "MiniMax-M3",
|
|
3727
|
+
api: "anthropic-messages",
|
|
3728
|
+
provider: "minimax-cn",
|
|
3729
|
+
baseUrl: "https://api.minimaxi.com/anthropic",
|
|
3730
|
+
reasoning: true,
|
|
3731
|
+
input: ["text", "image"],
|
|
3732
|
+
cost: {
|
|
3733
|
+
input: 0.6,
|
|
3734
|
+
output: 2.4,
|
|
3735
|
+
cacheRead: 0.12,
|
|
3736
|
+
cacheWrite: 0
|
|
3737
|
+
},
|
|
3738
|
+
contextWindow: 1048576,
|
|
3739
|
+
maxTokens: 512e3
|
|
3706
3740
|
}
|
|
3707
3741
|
},
|
|
3708
3742
|
"mistral": {
|
|
@@ -3458,6 +3458,23 @@ export declare const MODELS: {
|
|
|
3458
3458
|
contextWindow: number;
|
|
3459
3459
|
maxTokens: number;
|
|
3460
3460
|
};
|
|
3461
|
+
readonly "MiniMax-M3": {
|
|
3462
|
+
id: string;
|
|
3463
|
+
name: string;
|
|
3464
|
+
api: "anthropic-messages";
|
|
3465
|
+
provider: string;
|
|
3466
|
+
baseUrl: string;
|
|
3467
|
+
reasoning: true;
|
|
3468
|
+
input: ("text" | "image")[];
|
|
3469
|
+
cost: {
|
|
3470
|
+
input: number;
|
|
3471
|
+
output: number;
|
|
3472
|
+
cacheRead: number;
|
|
3473
|
+
cacheWrite: number;
|
|
3474
|
+
};
|
|
3475
|
+
contextWindow: number;
|
|
3476
|
+
maxTokens: number;
|
|
3477
|
+
};
|
|
3461
3478
|
};
|
|
3462
3479
|
readonly "minimax-cn": {
|
|
3463
3480
|
readonly "MiniMax-M2": {
|
|
@@ -3528,6 +3545,23 @@ export declare const MODELS: {
|
|
|
3528
3545
|
contextWindow: number;
|
|
3529
3546
|
maxTokens: number;
|
|
3530
3547
|
};
|
|
3548
|
+
readonly "MiniMax-M3": {
|
|
3549
|
+
id: string;
|
|
3550
|
+
name: string;
|
|
3551
|
+
api: "anthropic-messages";
|
|
3552
|
+
provider: string;
|
|
3553
|
+
baseUrl: string;
|
|
3554
|
+
reasoning: true;
|
|
3555
|
+
input: ("text" | "image")[];
|
|
3556
|
+
cost: {
|
|
3557
|
+
input: number;
|
|
3558
|
+
output: number;
|
|
3559
|
+
cacheRead: number;
|
|
3560
|
+
cacheWrite: number;
|
|
3561
|
+
};
|
|
3562
|
+
contextWindow: number;
|
|
3563
|
+
maxTokens: number;
|
|
3564
|
+
};
|
|
3531
3565
|
};
|
|
3532
3566
|
readonly mistral: {
|
|
3533
3567
|
readonly "codestral-latest": {
|