@oh-my-pi/pi-catalog 16.3.3 → 16.3.4
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/types/hosts.d.ts +4 -0
- package/dist/types/provider-models/descriptors.d.ts +9 -0
- package/dist/types/provider-models/openai-compat.d.ts +6 -0
- package/package.json +3 -3
- package/src/hosts.ts +1 -0
- package/src/identity/priority.ts +1 -0
- package/src/models.json +707 -102
- package/src/provider-models/descriptors.ts +9 -0
- package/src/provider-models/openai-compat.ts +97 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [16.3.4] - 2026-07-03
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Added Baseten as a supported model provider
|
|
10
|
+
- Added support for new models from Baseten, including DeepSeek V4 Pro and Kimi series
|
|
11
|
+
- Added new Devin agent models: Claude 5 Fable variants
|
|
12
|
+
- Added new Github Copilot models: Kimi K2.7 Code and MAI-Code-1-Flash
|
|
13
|
+
- Added Poolside Laguna XS 2.1 models via Kilo and OpenRouter providers
|
|
14
|
+
- Added support for Claude Fable 5 (Free) via Zenmux provider
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- Updated priority ordering to include Baseten
|
|
19
|
+
- Updated pricing and limits for various existing models in the catalog
|
|
20
|
+
|
|
5
21
|
## [16.3.3] - 2026-07-02
|
|
6
22
|
|
|
7
23
|
### Fixed
|
package/dist/types/hosts.d.ts
CHANGED
|
@@ -86,6 +86,10 @@ export declare const KNOWN_HOSTS: {
|
|
|
86
86
|
readonly providers: readonly ["together"];
|
|
87
87
|
readonly urlMarkers: readonly ["api.together.xyz"];
|
|
88
88
|
};
|
|
89
|
+
readonly baseten: {
|
|
90
|
+
readonly providers: readonly ["baseten"];
|
|
91
|
+
readonly urlMarkers: readonly ["baseten.co"];
|
|
92
|
+
};
|
|
89
93
|
/** URL-only on purpose: the `fireworks`/`firepass` providers route per-model and not every model is Fireworks-shaped. */
|
|
90
94
|
readonly fireworks: {
|
|
91
95
|
readonly urlMarkers: readonly ["fireworks.ai"];
|
|
@@ -23,6 +23,15 @@ export declare const CATALOG_PROVIDERS: readonly [{
|
|
|
23
23
|
readonly catalogDiscovery: {
|
|
24
24
|
readonly label: "Alibaba Coding Plan";
|
|
25
25
|
};
|
|
26
|
+
}, {
|
|
27
|
+
readonly id: "baseten";
|
|
28
|
+
readonly defaultModel: "moonshotai/Kimi-K2.7-Code";
|
|
29
|
+
readonly envVars: readonly ["BASETEN_API_KEY"];
|
|
30
|
+
readonly createModelManagerOptions: (config: ModelManagerConfig) => import("..").ModelManagerOptions<"openai-completions", unknown>;
|
|
31
|
+
readonly dynamicModelsAuthoritative: true;
|
|
32
|
+
readonly catalogDiscovery: {
|
|
33
|
+
readonly label: "Baseten";
|
|
34
|
+
};
|
|
26
35
|
}, {
|
|
27
36
|
readonly id: "amazon-bedrock";
|
|
28
37
|
readonly defaultModel: "us.anthropic.claude-opus-4-8";
|
|
@@ -303,6 +303,12 @@ export interface VeniceModelManagerConfig {
|
|
|
303
303
|
fetch?: FetchImpl;
|
|
304
304
|
}
|
|
305
305
|
export declare function veniceModelManagerOptions(config?: VeniceModelManagerConfig): ModelManagerOptions<"openai-completions">;
|
|
306
|
+
export interface BasetenModelManagerConfig {
|
|
307
|
+
apiKey?: string;
|
|
308
|
+
baseUrl?: string;
|
|
309
|
+
fetch?: FetchImpl;
|
|
310
|
+
}
|
|
311
|
+
export declare function basetenModelManagerOptions(config?: BasetenModelManagerConfig): ModelManagerOptions<"openai-completions">;
|
|
306
312
|
export interface TogetherModelManagerConfig {
|
|
307
313
|
apiKey?: string;
|
|
308
314
|
baseUrl?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@oh-my-pi/pi-catalog",
|
|
4
|
-
"version": "16.3.
|
|
4
|
+
"version": "16.3.4",
|
|
5
5
|
"description": "Model catalog for omp: bundled model database, provider discovery descriptors, model identity, classification, and equivalence",
|
|
6
6
|
"homepage": "https://omp.sh",
|
|
7
7
|
"author": "Can Boluk",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@bufbuild/protobuf": "^2.12.0",
|
|
37
|
-
"@oh-my-pi/pi-utils": "16.3.
|
|
37
|
+
"@oh-my-pi/pi-utils": "16.3.4",
|
|
38
38
|
"arktype": "^2.2.0",
|
|
39
39
|
"zod": "^4"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@oh-my-pi/pi-ai": "16.3.
|
|
42
|
+
"@oh-my-pi/pi-ai": "16.3.4",
|
|
43
43
|
"@types/bun": "^1.3.14"
|
|
44
44
|
},
|
|
45
45
|
"engines": {
|
package/src/hosts.ts
CHANGED
|
@@ -47,6 +47,7 @@ export const KNOWN_HOSTS = {
|
|
|
47
47
|
xai: { providers: ["xai"], urlMarkers: ["api.x.ai"] },
|
|
48
48
|
mistral: { providers: ["mistral"], urlMarkers: ["mistral.ai"] },
|
|
49
49
|
together: { providers: ["together"], urlMarkers: ["api.together.xyz"] },
|
|
50
|
+
baseten: { providers: ["baseten"], urlMarkers: ["baseten.co"] },
|
|
50
51
|
/** URL-only on purpose: the `fireworks`/`firepass` providers route per-model and not every model is Fireworks-shaped. */
|
|
51
52
|
fireworks: { urlMarkers: ["fireworks.ai"] },
|
|
52
53
|
groq: { providers: ["groq"], urlMarkers: ["api.groq.com"] },
|
package/src/identity/priority.ts
CHANGED
package/src/models.json
CHANGED
|
@@ -10999,6 +10999,7 @@
|
|
|
10999
10999
|
},
|
|
11000
11000
|
"compat": {
|
|
11001
11001
|
"officialEndpoint": true,
|
|
11002
|
+
"signingEndpoint": true,
|
|
11002
11003
|
"disableAdaptiveThinking": false,
|
|
11003
11004
|
"supportsEagerToolInputStreaming": true,
|
|
11004
11005
|
"supportsLongCacheRetention": true,
|
|
@@ -11052,6 +11053,7 @@
|
|
|
11052
11053
|
"maxTokens": 4096,
|
|
11053
11054
|
"compat": {
|
|
11054
11055
|
"officialEndpoint": true,
|
|
11056
|
+
"signingEndpoint": true,
|
|
11055
11057
|
"disableAdaptiveThinking": false,
|
|
11056
11058
|
"supportsEagerToolInputStreaming": true,
|
|
11057
11059
|
"supportsLongCacheRetention": true,
|
|
@@ -11085,6 +11087,7 @@
|
|
|
11085
11087
|
"maxTokens": 4096,
|
|
11086
11088
|
"compat": {
|
|
11087
11089
|
"officialEndpoint": true,
|
|
11090
|
+
"signingEndpoint": true,
|
|
11088
11091
|
"disableAdaptiveThinking": false,
|
|
11089
11092
|
"supportsEagerToolInputStreaming": true,
|
|
11090
11093
|
"supportsLongCacheRetention": true,
|
|
@@ -12655,6 +12658,335 @@
|
|
|
12655
12658
|
}
|
|
12656
12659
|
}
|
|
12657
12660
|
},
|
|
12661
|
+
"baseten": {
|
|
12662
|
+
"deepseek-ai/DeepSeek-V4-Pro": {
|
|
12663
|
+
"id": "deepseek-ai/DeepSeek-V4-Pro",
|
|
12664
|
+
"name": "Deepseek V4 Pro",
|
|
12665
|
+
"api": "openai-completions",
|
|
12666
|
+
"provider": "baseten",
|
|
12667
|
+
"baseUrl": "https://inference.baseten.co/v1",
|
|
12668
|
+
"reasoning": true,
|
|
12669
|
+
"input": [
|
|
12670
|
+
"text"
|
|
12671
|
+
],
|
|
12672
|
+
"cost": {
|
|
12673
|
+
"input": 1.74,
|
|
12674
|
+
"output": 3.48,
|
|
12675
|
+
"cacheRead": 0.145,
|
|
12676
|
+
"cacheWrite": 0
|
|
12677
|
+
},
|
|
12678
|
+
"contextWindow": 262144,
|
|
12679
|
+
"maxTokens": 262144,
|
|
12680
|
+
"thinking": {
|
|
12681
|
+
"mode": "effort",
|
|
12682
|
+
"efforts": [
|
|
12683
|
+
"minimal",
|
|
12684
|
+
"low",
|
|
12685
|
+
"medium",
|
|
12686
|
+
"high",
|
|
12687
|
+
"xhigh"
|
|
12688
|
+
],
|
|
12689
|
+
"effortMap": {
|
|
12690
|
+
"minimal": "high",
|
|
12691
|
+
"low": "high",
|
|
12692
|
+
"medium": "high",
|
|
12693
|
+
"high": "high",
|
|
12694
|
+
"xhigh": "max"
|
|
12695
|
+
}
|
|
12696
|
+
}
|
|
12697
|
+
},
|
|
12698
|
+
"moonshotai/Kimi-K2.5": {
|
|
12699
|
+
"id": "moonshotai/Kimi-K2.5",
|
|
12700
|
+
"name": "Kimi K2.5",
|
|
12701
|
+
"api": "openai-completions",
|
|
12702
|
+
"provider": "baseten",
|
|
12703
|
+
"baseUrl": "https://inference.baseten.co/v1",
|
|
12704
|
+
"reasoning": true,
|
|
12705
|
+
"input": [
|
|
12706
|
+
"text",
|
|
12707
|
+
"image"
|
|
12708
|
+
],
|
|
12709
|
+
"cost": {
|
|
12710
|
+
"input": 0.6,
|
|
12711
|
+
"output": 3,
|
|
12712
|
+
"cacheRead": 0.12,
|
|
12713
|
+
"cacheWrite": 0
|
|
12714
|
+
},
|
|
12715
|
+
"contextWindow": 262000,
|
|
12716
|
+
"maxTokens": 262000,
|
|
12717
|
+
"thinking": {
|
|
12718
|
+
"mode": "effort",
|
|
12719
|
+
"efforts": [
|
|
12720
|
+
"minimal",
|
|
12721
|
+
"low",
|
|
12722
|
+
"medium",
|
|
12723
|
+
"high",
|
|
12724
|
+
"xhigh"
|
|
12725
|
+
]
|
|
12726
|
+
}
|
|
12727
|
+
},
|
|
12728
|
+
"moonshotai/Kimi-K2.6": {
|
|
12729
|
+
"id": "moonshotai/Kimi-K2.6",
|
|
12730
|
+
"name": "Kimi K2.6",
|
|
12731
|
+
"api": "openai-completions",
|
|
12732
|
+
"provider": "baseten",
|
|
12733
|
+
"baseUrl": "https://inference.baseten.co/v1",
|
|
12734
|
+
"reasoning": true,
|
|
12735
|
+
"input": [
|
|
12736
|
+
"text",
|
|
12737
|
+
"image"
|
|
12738
|
+
],
|
|
12739
|
+
"cost": {
|
|
12740
|
+
"input": 0.95,
|
|
12741
|
+
"output": 4,
|
|
12742
|
+
"cacheRead": 0.16,
|
|
12743
|
+
"cacheWrite": 0
|
|
12744
|
+
},
|
|
12745
|
+
"contextWindow": 262000,
|
|
12746
|
+
"maxTokens": 262000,
|
|
12747
|
+
"thinking": {
|
|
12748
|
+
"mode": "effort",
|
|
12749
|
+
"efforts": [
|
|
12750
|
+
"minimal",
|
|
12751
|
+
"low",
|
|
12752
|
+
"medium",
|
|
12753
|
+
"high",
|
|
12754
|
+
"xhigh"
|
|
12755
|
+
]
|
|
12756
|
+
}
|
|
12757
|
+
},
|
|
12758
|
+
"moonshotai/Kimi-K2.7-Code": {
|
|
12759
|
+
"id": "moonshotai/Kimi-K2.7-Code",
|
|
12760
|
+
"name": "Kimi K2.7 Code",
|
|
12761
|
+
"api": "openai-completions",
|
|
12762
|
+
"provider": "baseten",
|
|
12763
|
+
"baseUrl": "https://inference.baseten.co/v1",
|
|
12764
|
+
"reasoning": true,
|
|
12765
|
+
"input": [
|
|
12766
|
+
"text",
|
|
12767
|
+
"image"
|
|
12768
|
+
],
|
|
12769
|
+
"cost": {
|
|
12770
|
+
"input": 0.95,
|
|
12771
|
+
"output": 4,
|
|
12772
|
+
"cacheRead": 0.16,
|
|
12773
|
+
"cacheWrite": 0
|
|
12774
|
+
},
|
|
12775
|
+
"contextWindow": 262000,
|
|
12776
|
+
"maxTokens": 262000,
|
|
12777
|
+
"thinking": {
|
|
12778
|
+
"mode": "effort",
|
|
12779
|
+
"efforts": [
|
|
12780
|
+
"minimal",
|
|
12781
|
+
"low",
|
|
12782
|
+
"medium",
|
|
12783
|
+
"high",
|
|
12784
|
+
"xhigh"
|
|
12785
|
+
]
|
|
12786
|
+
}
|
|
12787
|
+
},
|
|
12788
|
+
"nvidia/Nemotron-120B-A12B": {
|
|
12789
|
+
"id": "nvidia/Nemotron-120B-A12B",
|
|
12790
|
+
"name": "Nemotron Super",
|
|
12791
|
+
"api": "openai-completions",
|
|
12792
|
+
"provider": "baseten",
|
|
12793
|
+
"baseUrl": "https://inference.baseten.co/v1",
|
|
12794
|
+
"reasoning": true,
|
|
12795
|
+
"input": [
|
|
12796
|
+
"text"
|
|
12797
|
+
],
|
|
12798
|
+
"cost": {
|
|
12799
|
+
"input": 0.3,
|
|
12800
|
+
"output": 0.75,
|
|
12801
|
+
"cacheRead": 0.06,
|
|
12802
|
+
"cacheWrite": 0
|
|
12803
|
+
},
|
|
12804
|
+
"contextWindow": 202800,
|
|
12805
|
+
"maxTokens": 202800,
|
|
12806
|
+
"thinking": {
|
|
12807
|
+
"mode": "effort",
|
|
12808
|
+
"efforts": [
|
|
12809
|
+
"minimal",
|
|
12810
|
+
"low",
|
|
12811
|
+
"medium",
|
|
12812
|
+
"high",
|
|
12813
|
+
"xhigh"
|
|
12814
|
+
]
|
|
12815
|
+
}
|
|
12816
|
+
},
|
|
12817
|
+
"nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B": {
|
|
12818
|
+
"id": "nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B",
|
|
12819
|
+
"name": "Nemotron Ultra",
|
|
12820
|
+
"api": "openai-completions",
|
|
12821
|
+
"provider": "baseten",
|
|
12822
|
+
"baseUrl": "https://inference.baseten.co/v1",
|
|
12823
|
+
"reasoning": true,
|
|
12824
|
+
"input": [
|
|
12825
|
+
"text"
|
|
12826
|
+
],
|
|
12827
|
+
"cost": {
|
|
12828
|
+
"input": 0.6,
|
|
12829
|
+
"output": 2.4,
|
|
12830
|
+
"cacheRead": 0.12,
|
|
12831
|
+
"cacheWrite": 0
|
|
12832
|
+
},
|
|
12833
|
+
"contextWindow": 202800,
|
|
12834
|
+
"maxTokens": 202800,
|
|
12835
|
+
"thinking": {
|
|
12836
|
+
"mode": "effort",
|
|
12837
|
+
"efforts": [
|
|
12838
|
+
"minimal",
|
|
12839
|
+
"low",
|
|
12840
|
+
"medium",
|
|
12841
|
+
"high",
|
|
12842
|
+
"xhigh"
|
|
12843
|
+
]
|
|
12844
|
+
}
|
|
12845
|
+
},
|
|
12846
|
+
"openai/gpt-oss-120b": {
|
|
12847
|
+
"id": "openai/gpt-oss-120b",
|
|
12848
|
+
"name": "OpenAI GPT 120B",
|
|
12849
|
+
"api": "openai-completions",
|
|
12850
|
+
"provider": "baseten",
|
|
12851
|
+
"baseUrl": "https://inference.baseten.co/v1",
|
|
12852
|
+
"reasoning": true,
|
|
12853
|
+
"input": [
|
|
12854
|
+
"text"
|
|
12855
|
+
],
|
|
12856
|
+
"cost": {
|
|
12857
|
+
"input": 0.09999999999999999,
|
|
12858
|
+
"output": 0.5,
|
|
12859
|
+
"cacheRead": 0.09999999999999999,
|
|
12860
|
+
"cacheWrite": 0
|
|
12861
|
+
},
|
|
12862
|
+
"contextWindow": 128072,
|
|
12863
|
+
"maxTokens": 128072,
|
|
12864
|
+
"thinking": {
|
|
12865
|
+
"mode": "effort",
|
|
12866
|
+
"efforts": [
|
|
12867
|
+
"low",
|
|
12868
|
+
"medium",
|
|
12869
|
+
"high"
|
|
12870
|
+
]
|
|
12871
|
+
}
|
|
12872
|
+
},
|
|
12873
|
+
"zai-org/GLM-4.7": {
|
|
12874
|
+
"id": "zai-org/GLM-4.7",
|
|
12875
|
+
"name": "GLM 4.7",
|
|
12876
|
+
"api": "openai-completions",
|
|
12877
|
+
"provider": "baseten",
|
|
12878
|
+
"baseUrl": "https://inference.baseten.co/v1",
|
|
12879
|
+
"reasoning": true,
|
|
12880
|
+
"input": [
|
|
12881
|
+
"text"
|
|
12882
|
+
],
|
|
12883
|
+
"cost": {
|
|
12884
|
+
"input": 0.6,
|
|
12885
|
+
"output": 2.2,
|
|
12886
|
+
"cacheRead": 0.12,
|
|
12887
|
+
"cacheWrite": 0
|
|
12888
|
+
},
|
|
12889
|
+
"contextWindow": 200000,
|
|
12890
|
+
"maxTokens": 200000,
|
|
12891
|
+
"thinking": {
|
|
12892
|
+
"mode": "effort",
|
|
12893
|
+
"efforts": [
|
|
12894
|
+
"minimal",
|
|
12895
|
+
"low",
|
|
12896
|
+
"medium",
|
|
12897
|
+
"high",
|
|
12898
|
+
"xhigh"
|
|
12899
|
+
]
|
|
12900
|
+
}
|
|
12901
|
+
},
|
|
12902
|
+
"zai-org/GLM-5": {
|
|
12903
|
+
"id": "zai-org/GLM-5",
|
|
12904
|
+
"name": "GLM 5",
|
|
12905
|
+
"api": "openai-completions",
|
|
12906
|
+
"provider": "baseten",
|
|
12907
|
+
"baseUrl": "https://inference.baseten.co/v1",
|
|
12908
|
+
"reasoning": true,
|
|
12909
|
+
"input": [
|
|
12910
|
+
"text"
|
|
12911
|
+
],
|
|
12912
|
+
"cost": {
|
|
12913
|
+
"input": 0.95,
|
|
12914
|
+
"output": 3.15,
|
|
12915
|
+
"cacheRead": 0.19999999999999998,
|
|
12916
|
+
"cacheWrite": 0
|
|
12917
|
+
},
|
|
12918
|
+
"contextWindow": 202800,
|
|
12919
|
+
"maxTokens": 202800,
|
|
12920
|
+
"thinking": {
|
|
12921
|
+
"mode": "effort",
|
|
12922
|
+
"efforts": [
|
|
12923
|
+
"minimal",
|
|
12924
|
+
"low",
|
|
12925
|
+
"medium",
|
|
12926
|
+
"high",
|
|
12927
|
+
"xhigh"
|
|
12928
|
+
]
|
|
12929
|
+
}
|
|
12930
|
+
},
|
|
12931
|
+
"zai-org/GLM-5.1": {
|
|
12932
|
+
"id": "zai-org/GLM-5.1",
|
|
12933
|
+
"name": "GLM 5.1",
|
|
12934
|
+
"api": "openai-completions",
|
|
12935
|
+
"provider": "baseten",
|
|
12936
|
+
"baseUrl": "https://inference.baseten.co/v1",
|
|
12937
|
+
"reasoning": true,
|
|
12938
|
+
"input": [
|
|
12939
|
+
"text"
|
|
12940
|
+
],
|
|
12941
|
+
"cost": {
|
|
12942
|
+
"input": 1.3,
|
|
12943
|
+
"output": 4.300000000000001,
|
|
12944
|
+
"cacheRead": 0.26,
|
|
12945
|
+
"cacheWrite": 0
|
|
12946
|
+
},
|
|
12947
|
+
"contextWindow": 202800,
|
|
12948
|
+
"maxTokens": 202800,
|
|
12949
|
+
"thinking": {
|
|
12950
|
+
"mode": "effort",
|
|
12951
|
+
"efforts": [
|
|
12952
|
+
"minimal",
|
|
12953
|
+
"low",
|
|
12954
|
+
"medium",
|
|
12955
|
+
"high",
|
|
12956
|
+
"xhigh"
|
|
12957
|
+
]
|
|
12958
|
+
}
|
|
12959
|
+
},
|
|
12960
|
+
"zai-org/GLM-5.2": {
|
|
12961
|
+
"id": "zai-org/GLM-5.2",
|
|
12962
|
+
"name": "GLM 5.2",
|
|
12963
|
+
"api": "openai-completions",
|
|
12964
|
+
"provider": "baseten",
|
|
12965
|
+
"baseUrl": "https://inference.baseten.co/v1",
|
|
12966
|
+
"reasoning": true,
|
|
12967
|
+
"input": [
|
|
12968
|
+
"text"
|
|
12969
|
+
],
|
|
12970
|
+
"cost": {
|
|
12971
|
+
"input": 1.4,
|
|
12972
|
+
"output": 4.4,
|
|
12973
|
+
"cacheRead": 0.26,
|
|
12974
|
+
"cacheWrite": 0
|
|
12975
|
+
},
|
|
12976
|
+
"contextWindow": 202720,
|
|
12977
|
+
"maxTokens": 202720,
|
|
12978
|
+
"thinking": {
|
|
12979
|
+
"mode": "effort",
|
|
12980
|
+
"efforts": [
|
|
12981
|
+
"minimal",
|
|
12982
|
+
"low",
|
|
12983
|
+
"medium",
|
|
12984
|
+
"high",
|
|
12985
|
+
"xhigh"
|
|
12986
|
+
]
|
|
12987
|
+
}
|
|
12988
|
+
}
|
|
12989
|
+
},
|
|
12658
12990
|
"cerebras": {
|
|
12659
12991
|
"gemma-4-31b": {
|
|
12660
12992
|
"id": "gemma-4-31b",
|
|
@@ -15785,6 +16117,111 @@
|
|
|
15785
16117
|
}
|
|
15786
16118
|
},
|
|
15787
16119
|
"devin": {
|
|
16120
|
+
"claude-5-fable-high": {
|
|
16121
|
+
"id": "claude-5-fable-high",
|
|
16122
|
+
"name": "Claude Fable 5 High",
|
|
16123
|
+
"api": "devin-agent",
|
|
16124
|
+
"provider": "devin",
|
|
16125
|
+
"baseUrl": "https://server.codeium.com",
|
|
16126
|
+
"reasoning": true,
|
|
16127
|
+
"input": [
|
|
16128
|
+
"text",
|
|
16129
|
+
"image"
|
|
16130
|
+
],
|
|
16131
|
+
"supportsTools": true,
|
|
16132
|
+
"cost": {
|
|
16133
|
+
"input": 0,
|
|
16134
|
+
"output": 0,
|
|
16135
|
+
"cacheRead": 0,
|
|
16136
|
+
"cacheWrite": 0
|
|
16137
|
+
},
|
|
16138
|
+
"contextWindow": 1000000,
|
|
16139
|
+
"maxTokens": 64000
|
|
16140
|
+
},
|
|
16141
|
+
"claude-5-fable-low": {
|
|
16142
|
+
"id": "claude-5-fable-low",
|
|
16143
|
+
"name": "Claude Fable 5 Low",
|
|
16144
|
+
"api": "devin-agent",
|
|
16145
|
+
"provider": "devin",
|
|
16146
|
+
"baseUrl": "https://server.codeium.com",
|
|
16147
|
+
"reasoning": true,
|
|
16148
|
+
"input": [
|
|
16149
|
+
"text",
|
|
16150
|
+
"image"
|
|
16151
|
+
],
|
|
16152
|
+
"supportsTools": true,
|
|
16153
|
+
"cost": {
|
|
16154
|
+
"input": 0,
|
|
16155
|
+
"output": 0,
|
|
16156
|
+
"cacheRead": 0,
|
|
16157
|
+
"cacheWrite": 0
|
|
16158
|
+
},
|
|
16159
|
+
"contextWindow": 1000000,
|
|
16160
|
+
"maxTokens": 64000
|
|
16161
|
+
},
|
|
16162
|
+
"claude-5-fable-max": {
|
|
16163
|
+
"id": "claude-5-fable-max",
|
|
16164
|
+
"name": "Claude Fable 5 Max",
|
|
16165
|
+
"api": "devin-agent",
|
|
16166
|
+
"provider": "devin",
|
|
16167
|
+
"baseUrl": "https://server.codeium.com",
|
|
16168
|
+
"reasoning": true,
|
|
16169
|
+
"input": [
|
|
16170
|
+
"text",
|
|
16171
|
+
"image"
|
|
16172
|
+
],
|
|
16173
|
+
"supportsTools": true,
|
|
16174
|
+
"cost": {
|
|
16175
|
+
"input": 0,
|
|
16176
|
+
"output": 0,
|
|
16177
|
+
"cacheRead": 0,
|
|
16178
|
+
"cacheWrite": 0
|
|
16179
|
+
},
|
|
16180
|
+
"contextWindow": 1000000,
|
|
16181
|
+
"maxTokens": 64000
|
|
16182
|
+
},
|
|
16183
|
+
"claude-5-fable-medium": {
|
|
16184
|
+
"id": "claude-5-fable-medium",
|
|
16185
|
+
"name": "Claude Fable 5 Medium",
|
|
16186
|
+
"api": "devin-agent",
|
|
16187
|
+
"provider": "devin",
|
|
16188
|
+
"baseUrl": "https://server.codeium.com",
|
|
16189
|
+
"reasoning": true,
|
|
16190
|
+
"input": [
|
|
16191
|
+
"text",
|
|
16192
|
+
"image"
|
|
16193
|
+
],
|
|
16194
|
+
"supportsTools": true,
|
|
16195
|
+
"cost": {
|
|
16196
|
+
"input": 0,
|
|
16197
|
+
"output": 0,
|
|
16198
|
+
"cacheRead": 0,
|
|
16199
|
+
"cacheWrite": 0
|
|
16200
|
+
},
|
|
16201
|
+
"contextWindow": 1000000,
|
|
16202
|
+
"maxTokens": 64000
|
|
16203
|
+
},
|
|
16204
|
+
"claude-5-fable-xhigh": {
|
|
16205
|
+
"id": "claude-5-fable-xhigh",
|
|
16206
|
+
"name": "Claude Fable 5 XHigh",
|
|
16207
|
+
"api": "devin-agent",
|
|
16208
|
+
"provider": "devin",
|
|
16209
|
+
"baseUrl": "https://server.codeium.com",
|
|
16210
|
+
"reasoning": true,
|
|
16211
|
+
"input": [
|
|
16212
|
+
"text",
|
|
16213
|
+
"image"
|
|
16214
|
+
],
|
|
16215
|
+
"supportsTools": true,
|
|
16216
|
+
"cost": {
|
|
16217
|
+
"input": 0,
|
|
16218
|
+
"output": 0,
|
|
16219
|
+
"cacheRead": 0,
|
|
16220
|
+
"cacheWrite": 0
|
|
16221
|
+
},
|
|
16222
|
+
"contextWindow": 1000000,
|
|
16223
|
+
"maxTokens": 64000
|
|
16224
|
+
},
|
|
15788
16225
|
"claude-opus-4-6": {
|
|
15789
16226
|
"id": "claude-opus-4-6",
|
|
15790
16227
|
"name": "Claude Opus 4.6",
|
|
@@ -18854,6 +19291,81 @@
|
|
|
18854
19291
|
]
|
|
18855
19292
|
}
|
|
18856
19293
|
},
|
|
19294
|
+
"kimi-k2.7-code": {
|
|
19295
|
+
"id": "kimi-k2.7-code",
|
|
19296
|
+
"name": "Kimi K2.7 Code",
|
|
19297
|
+
"api": "openai-completions",
|
|
19298
|
+
"provider": "github-copilot",
|
|
19299
|
+
"baseUrl": "https://api.githubcopilot.com",
|
|
19300
|
+
"reasoning": true,
|
|
19301
|
+
"input": [
|
|
19302
|
+
"text",
|
|
19303
|
+
"image"
|
|
19304
|
+
],
|
|
19305
|
+
"cost": {
|
|
19306
|
+
"input": 0.95,
|
|
19307
|
+
"output": 4,
|
|
19308
|
+
"cacheRead": 0.19,
|
|
19309
|
+
"cacheWrite": 0
|
|
19310
|
+
},
|
|
19311
|
+
"contextWindow": 256000,
|
|
19312
|
+
"maxTokens": 32000,
|
|
19313
|
+
"headers": {
|
|
19314
|
+
"User-Agent": "opencode/1.3.15",
|
|
19315
|
+
"X-GitHub-Api-Version": "2026-06-01"
|
|
19316
|
+
},
|
|
19317
|
+
"compat": {
|
|
19318
|
+
"supportsStore": false,
|
|
19319
|
+
"supportsDeveloperRole": false,
|
|
19320
|
+
"supportsReasoningEffort": false
|
|
19321
|
+
},
|
|
19322
|
+
"thinking": {
|
|
19323
|
+
"mode": "effort",
|
|
19324
|
+
"efforts": [
|
|
19325
|
+
"minimal",
|
|
19326
|
+
"low",
|
|
19327
|
+
"medium",
|
|
19328
|
+
"high"
|
|
19329
|
+
]
|
|
19330
|
+
}
|
|
19331
|
+
},
|
|
19332
|
+
"mai-code-1-flash-picker": {
|
|
19333
|
+
"id": "mai-code-1-flash-picker",
|
|
19334
|
+
"name": "MAI-Code-1-Flash",
|
|
19335
|
+
"api": "openai-completions",
|
|
19336
|
+
"provider": "github-copilot",
|
|
19337
|
+
"baseUrl": "https://api.githubcopilot.com",
|
|
19338
|
+
"reasoning": true,
|
|
19339
|
+
"input": [
|
|
19340
|
+
"text"
|
|
19341
|
+
],
|
|
19342
|
+
"cost": {
|
|
19343
|
+
"input": 0.75,
|
|
19344
|
+
"output": 4.5,
|
|
19345
|
+
"cacheRead": 0.075,
|
|
19346
|
+
"cacheWrite": 0
|
|
19347
|
+
},
|
|
19348
|
+
"contextWindow": 256000,
|
|
19349
|
+
"maxTokens": 128000,
|
|
19350
|
+
"headers": {
|
|
19351
|
+
"User-Agent": "opencode/1.3.15",
|
|
19352
|
+
"X-GitHub-Api-Version": "2026-06-01"
|
|
19353
|
+
},
|
|
19354
|
+
"compat": {
|
|
19355
|
+
"supportsStore": false,
|
|
19356
|
+
"supportsDeveloperRole": false,
|
|
19357
|
+
"supportsReasoningEffort": false
|
|
19358
|
+
},
|
|
19359
|
+
"thinking": {
|
|
19360
|
+
"mode": "effort",
|
|
19361
|
+
"efforts": [
|
|
19362
|
+
"minimal",
|
|
19363
|
+
"low",
|
|
19364
|
+
"medium",
|
|
19365
|
+
"high"
|
|
19366
|
+
]
|
|
19367
|
+
}
|
|
19368
|
+
},
|
|
18857
19369
|
"raptor-mini": {
|
|
18858
19370
|
"id": "raptor-mini",
|
|
18859
19371
|
"name": "Raptor mini",
|
|
@@ -31341,6 +31853,44 @@
|
|
|
31341
31853
|
]
|
|
31342
31854
|
}
|
|
31343
31855
|
},
|
|
31856
|
+
"poolside/laguna-xs-2.1": {
|
|
31857
|
+
"id": "poolside/laguna-xs-2.1",
|
|
31858
|
+
"name": "Laguna XS 2.1",
|
|
31859
|
+
"api": "openai-completions",
|
|
31860
|
+
"provider": "kilo",
|
|
31861
|
+
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
31862
|
+
"reasoning": false,
|
|
31863
|
+
"input": [
|
|
31864
|
+
"text"
|
|
31865
|
+
],
|
|
31866
|
+
"cost": {
|
|
31867
|
+
"input": 0,
|
|
31868
|
+
"output": 0,
|
|
31869
|
+
"cacheRead": 0,
|
|
31870
|
+
"cacheWrite": 0
|
|
31871
|
+
},
|
|
31872
|
+
"contextWindow": 262144,
|
|
31873
|
+
"maxTokens": 32768
|
|
31874
|
+
},
|
|
31875
|
+
"poolside/laguna-xs-2.1:free": {
|
|
31876
|
+
"id": "poolside/laguna-xs-2.1:free",
|
|
31877
|
+
"name": "Laguna XS 2.1 (free)",
|
|
31878
|
+
"api": "openai-completions",
|
|
31879
|
+
"provider": "kilo",
|
|
31880
|
+
"baseUrl": "https://api.kilo.ai/api/gateway",
|
|
31881
|
+
"reasoning": false,
|
|
31882
|
+
"input": [
|
|
31883
|
+
"text"
|
|
31884
|
+
],
|
|
31885
|
+
"cost": {
|
|
31886
|
+
"input": 0,
|
|
31887
|
+
"output": 0,
|
|
31888
|
+
"cacheRead": 0,
|
|
31889
|
+
"cacheWrite": 0
|
|
31890
|
+
},
|
|
31891
|
+
"contextWindow": 262144,
|
|
31892
|
+
"maxTokens": 32768
|
|
31893
|
+
},
|
|
31344
31894
|
"poolside/laguna-xs.2": {
|
|
31345
31895
|
"id": "poolside/laguna-xs.2",
|
|
31346
31896
|
"name": "Laguna XS.2",
|
|
@@ -59027,6 +59577,11 @@
|
|
|
59027
59577
|
"cacheRead": 0,
|
|
59028
59578
|
"cacheWrite": 0
|
|
59029
59579
|
},
|
|
59580
|
+
"remoteCompaction": {
|
|
59581
|
+
"enabled": true,
|
|
59582
|
+
"api": "openai-codex-responses",
|
|
59583
|
+
"v2StreamingEnabled": true
|
|
59584
|
+
},
|
|
59030
59585
|
"contextWindow": 272000,
|
|
59031
59586
|
"maxTokens": 128000,
|
|
59032
59587
|
"preferWebsockets": true,
|
|
@@ -59408,6 +59963,11 @@
|
|
|
59408
59963
|
"cacheRead": 0.25,
|
|
59409
59964
|
"cacheWrite": 0
|
|
59410
59965
|
},
|
|
59966
|
+
"remoteCompaction": {
|
|
59967
|
+
"enabled": true,
|
|
59968
|
+
"api": "openai-codex-responses",
|
|
59969
|
+
"v2StreamingEnabled": true
|
|
59970
|
+
},
|
|
59411
59971
|
"contextWindow": 272000,
|
|
59412
59972
|
"maxTokens": 128000,
|
|
59413
59973
|
"preferWebsockets": true,
|
|
@@ -59440,6 +60000,11 @@
|
|
|
59440
60000
|
"cacheRead": 0.075,
|
|
59441
60001
|
"cacheWrite": 0
|
|
59442
60002
|
},
|
|
60003
|
+
"remoteCompaction": {
|
|
60004
|
+
"enabled": true,
|
|
60005
|
+
"api": "openai-codex-responses",
|
|
60006
|
+
"v2StreamingEnabled": true
|
|
60007
|
+
},
|
|
59443
60008
|
"contextWindow": 272000,
|
|
59444
60009
|
"maxTokens": 128000,
|
|
59445
60010
|
"preferWebsockets": true,
|
|
@@ -59504,6 +60069,11 @@
|
|
|
59504
60069
|
"cacheRead": 0.5,
|
|
59505
60070
|
"cacheWrite": 0
|
|
59506
60071
|
},
|
|
60072
|
+
"remoteCompaction": {
|
|
60073
|
+
"enabled": true,
|
|
60074
|
+
"api": "openai-codex-responses",
|
|
60075
|
+
"v2StreamingEnabled": true
|
|
60076
|
+
},
|
|
59507
60077
|
"contextWindow": 272000,
|
|
59508
60078
|
"maxTokens": 128000,
|
|
59509
60079
|
"preferWebsockets": true,
|
|
@@ -62458,9 +63028,9 @@
|
|
|
62458
63028
|
"image"
|
|
62459
63029
|
],
|
|
62460
63030
|
"cost": {
|
|
62461
|
-
"input": 0.
|
|
62462
|
-
"output": 3.
|
|
62463
|
-
"cacheRead": 0.
|
|
63031
|
+
"input": 0.66,
|
|
63032
|
+
"output": 3.41,
|
|
63033
|
+
"cacheRead": 0.14,
|
|
62464
63034
|
"cacheWrite": 0
|
|
62465
63035
|
},
|
|
62466
63036
|
"contextWindow": 262144,
|
|
@@ -64084,13 +64654,13 @@
|
|
|
64084
64654
|
"text"
|
|
64085
64655
|
],
|
|
64086
64656
|
"cost": {
|
|
64087
|
-
"input": 0.
|
|
64657
|
+
"input": 0.09,
|
|
64088
64658
|
"output": 0.18,
|
|
64089
64659
|
"cacheRead": 0.018,
|
|
64090
64660
|
"cacheWrite": 0
|
|
64091
64661
|
},
|
|
64092
64662
|
"contextWindow": 1048576,
|
|
64093
|
-
"maxTokens":
|
|
64663
|
+
"maxTokens": 16384,
|
|
64094
64664
|
"thinking": {
|
|
64095
64665
|
"mode": "effort",
|
|
64096
64666
|
"efforts": [
|
|
@@ -66146,9 +66716,9 @@
|
|
|
66146
66716
|
"image"
|
|
66147
66717
|
],
|
|
66148
66718
|
"cost": {
|
|
66149
|
-
"input": 0.
|
|
66150
|
-
"output": 3.
|
|
66151
|
-
"cacheRead": 0.
|
|
66719
|
+
"input": 0.66,
|
|
66720
|
+
"output": 3.41,
|
|
66721
|
+
"cacheRead": 0.14,
|
|
66152
66722
|
"cacheWrite": 0
|
|
66153
66723
|
},
|
|
66154
66724
|
"contextWindow": 262144,
|
|
@@ -68432,6 +69002,62 @@
|
|
|
68432
69002
|
]
|
|
68433
69003
|
}
|
|
68434
69004
|
},
|
|
69005
|
+
"poolside/laguna-xs-2.1": {
|
|
69006
|
+
"id": "poolside/laguna-xs-2.1",
|
|
69007
|
+
"name": "Laguna XS 2.1",
|
|
69008
|
+
"api": "openrouter",
|
|
69009
|
+
"provider": "openrouter",
|
|
69010
|
+
"baseUrl": "https://openrouter.ai/api/v1",
|
|
69011
|
+
"reasoning": true,
|
|
69012
|
+
"input": [
|
|
69013
|
+
"text"
|
|
69014
|
+
],
|
|
69015
|
+
"cost": {
|
|
69016
|
+
"input": 0.06,
|
|
69017
|
+
"output": 0.12,
|
|
69018
|
+
"cacheRead": 0.03,
|
|
69019
|
+
"cacheWrite": 0
|
|
69020
|
+
},
|
|
69021
|
+
"contextWindow": 262144,
|
|
69022
|
+
"maxTokens": 32768,
|
|
69023
|
+
"thinking": {
|
|
69024
|
+
"mode": "effort",
|
|
69025
|
+
"efforts": [
|
|
69026
|
+
"minimal",
|
|
69027
|
+
"low",
|
|
69028
|
+
"medium",
|
|
69029
|
+
"high"
|
|
69030
|
+
]
|
|
69031
|
+
}
|
|
69032
|
+
},
|
|
69033
|
+
"poolside/laguna-xs-2.1:free": {
|
|
69034
|
+
"id": "poolside/laguna-xs-2.1:free",
|
|
69035
|
+
"name": "Laguna XS 2.1 (free)",
|
|
69036
|
+
"api": "openrouter",
|
|
69037
|
+
"provider": "openrouter",
|
|
69038
|
+
"baseUrl": "https://openrouter.ai/api/v1",
|
|
69039
|
+
"reasoning": true,
|
|
69040
|
+
"input": [
|
|
69041
|
+
"text"
|
|
69042
|
+
],
|
|
69043
|
+
"cost": {
|
|
69044
|
+
"input": 0,
|
|
69045
|
+
"output": 0,
|
|
69046
|
+
"cacheRead": 0,
|
|
69047
|
+
"cacheWrite": 0
|
|
69048
|
+
},
|
|
69049
|
+
"contextWindow": 262144,
|
|
69050
|
+
"maxTokens": 32768,
|
|
69051
|
+
"thinking": {
|
|
69052
|
+
"mode": "effort",
|
|
69053
|
+
"efforts": [
|
|
69054
|
+
"minimal",
|
|
69055
|
+
"low",
|
|
69056
|
+
"medium",
|
|
69057
|
+
"high"
|
|
69058
|
+
]
|
|
69059
|
+
}
|
|
69060
|
+
},
|
|
68435
69061
|
"poolside/laguna-xs.2": {
|
|
68436
69062
|
"id": "poolside/laguna-xs.2",
|
|
68437
69063
|
"name": "Laguna XS.2",
|
|
@@ -69350,8 +69976,8 @@
|
|
|
69350
69976
|
"image"
|
|
69351
69977
|
],
|
|
69352
69978
|
"cost": {
|
|
69353
|
-
"input": 0.
|
|
69354
|
-
"output": 0.
|
|
69979
|
+
"input": 0.117,
|
|
69980
|
+
"output": 0.45499999999999996,
|
|
69355
69981
|
"cacheRead": 0,
|
|
69356
69982
|
"cacheWrite": 0
|
|
69357
69983
|
},
|
|
@@ -71131,13 +71757,13 @@
|
|
|
71131
71757
|
"text"
|
|
71132
71758
|
],
|
|
71133
71759
|
"cost": {
|
|
71134
|
-
"input": 0.
|
|
71135
|
-
"output":
|
|
71136
|
-
"cacheRead": 0.
|
|
71760
|
+
"input": 0.966,
|
|
71761
|
+
"output": 3.036,
|
|
71762
|
+
"cacheRead": 0.1794,
|
|
71137
71763
|
"cacheWrite": 0
|
|
71138
71764
|
},
|
|
71139
71765
|
"contextWindow": 202752,
|
|
71140
|
-
"maxTokens":
|
|
71766
|
+
"maxTokens": 128000,
|
|
71141
71767
|
"thinking": {
|
|
71142
71768
|
"mode": "effort",
|
|
71143
71769
|
"efforts": [
|
|
@@ -71381,7 +72007,7 @@
|
|
|
71381
72007
|
"synthetic": {
|
|
71382
72008
|
"hf:MiniMaxAI/MiniMax-M3": {
|
|
71383
72009
|
"id": "hf:MiniMaxAI/MiniMax-M3",
|
|
71384
|
-
"name": "MiniMax-M3",
|
|
72010
|
+
"name": "MiniMaxAI/MiniMax-M3",
|
|
71385
72011
|
"api": "openai-completions",
|
|
71386
72012
|
"provider": "synthetic",
|
|
71387
72013
|
"baseUrl": "https://api.synthetic.new/openai/v1",
|
|
@@ -71396,36 +72022,6 @@
|
|
|
71396
72022
|
"cacheRead": 0.6,
|
|
71397
72023
|
"cacheWrite": 0
|
|
71398
72024
|
},
|
|
71399
|
-
"contextWindow": 524288,
|
|
71400
|
-
"maxTokens": 65536,
|
|
71401
|
-
"thinking": {
|
|
71402
|
-
"mode": "effort",
|
|
71403
|
-
"efforts": [
|
|
71404
|
-
"minimal",
|
|
71405
|
-
"low",
|
|
71406
|
-
"medium",
|
|
71407
|
-
"high",
|
|
71408
|
-
"xhigh"
|
|
71409
|
-
]
|
|
71410
|
-
}
|
|
71411
|
-
},
|
|
71412
|
-
"hf:moonshotai/Kimi-K2.6": {
|
|
71413
|
-
"id": "hf:moonshotai/Kimi-K2.6",
|
|
71414
|
-
"name": "moonshotai/Kimi-K2.6",
|
|
71415
|
-
"api": "openai-completions",
|
|
71416
|
-
"provider": "synthetic",
|
|
71417
|
-
"baseUrl": "https://api.synthetic.new/openai/v1",
|
|
71418
|
-
"reasoning": true,
|
|
71419
|
-
"input": [
|
|
71420
|
-
"text",
|
|
71421
|
-
"image"
|
|
71422
|
-
],
|
|
71423
|
-
"cost": {
|
|
71424
|
-
"input": 0.95,
|
|
71425
|
-
"output": 4,
|
|
71426
|
-
"cacheRead": 0.95,
|
|
71427
|
-
"cacheWrite": 0
|
|
71428
|
-
},
|
|
71429
72025
|
"contextWindow": 262144,
|
|
71430
72026
|
"maxTokens": 65536,
|
|
71431
72027
|
"thinking": {
|
|
@@ -71441,7 +72037,7 @@
|
|
|
71441
72037
|
},
|
|
71442
72038
|
"hf:moonshotai/Kimi-K2.7-Code": {
|
|
71443
72039
|
"id": "hf:moonshotai/Kimi-K2.7-Code",
|
|
71444
|
-
"name": "Kimi
|
|
72040
|
+
"name": "moonshotai/Kimi-K2.7-Code",
|
|
71445
72041
|
"api": "openai-completions",
|
|
71446
72042
|
"provider": "synthetic",
|
|
71447
72043
|
"baseUrl": "https://api.synthetic.new/openai/v1",
|
|
@@ -71471,7 +72067,7 @@
|
|
|
71471
72067
|
},
|
|
71472
72068
|
"hf:nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4": {
|
|
71473
72069
|
"id": "hf:nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4",
|
|
71474
|
-
"name": "Nemotron
|
|
72070
|
+
"name": "nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4",
|
|
71475
72071
|
"api": "openai-completions",
|
|
71476
72072
|
"provider": "synthetic",
|
|
71477
72073
|
"baseUrl": "https://api.synthetic.new/openai/v1",
|
|
@@ -71500,7 +72096,7 @@
|
|
|
71500
72096
|
},
|
|
71501
72097
|
"hf:openai/gpt-oss-120b": {
|
|
71502
72098
|
"id": "hf:openai/gpt-oss-120b",
|
|
71503
|
-
"name": "
|
|
72099
|
+
"name": "openai/gpt-oss-120b",
|
|
71504
72100
|
"api": "openai-completions",
|
|
71505
72101
|
"provider": "synthetic",
|
|
71506
72102
|
"baseUrl": "https://api.synthetic.new/openai/v1",
|
|
@@ -71527,7 +72123,7 @@
|
|
|
71527
72123
|
},
|
|
71528
72124
|
"hf:Qwen/Qwen3.6-27B": {
|
|
71529
72125
|
"id": "hf:Qwen/Qwen3.6-27B",
|
|
71530
|
-
"name": "Qwen3.6
|
|
72126
|
+
"name": "Qwen/Qwen3.6-27B",
|
|
71531
72127
|
"api": "openai-completions",
|
|
71532
72128
|
"provider": "synthetic",
|
|
71533
72129
|
"baseUrl": "https://api.synthetic.new/openai/v1",
|
|
@@ -71556,7 +72152,7 @@
|
|
|
71556
72152
|
},
|
|
71557
72153
|
"hf:zai-org/GLM-4.7-Flash": {
|
|
71558
72154
|
"id": "hf:zai-org/GLM-4.7-Flash",
|
|
71559
|
-
"name": "GLM-4.7-Flash",
|
|
72155
|
+
"name": "zai-org/GLM-4.7-Flash",
|
|
71560
72156
|
"api": "openai-completions",
|
|
71561
72157
|
"provider": "synthetic",
|
|
71562
72158
|
"baseUrl": "https://api.synthetic.new/openai/v1",
|
|
@@ -71583,38 +72179,9 @@
|
|
|
71583
72179
|
]
|
|
71584
72180
|
}
|
|
71585
72181
|
},
|
|
71586
|
-
"hf:zai-org/GLM-5.1": {
|
|
71587
|
-
"id": "hf:zai-org/GLM-5.1",
|
|
71588
|
-
"name": "zai-org/GLM-5.1",
|
|
71589
|
-
"api": "openai-completions",
|
|
71590
|
-
"provider": "synthetic",
|
|
71591
|
-
"baseUrl": "https://api.synthetic.new/openai/v1",
|
|
71592
|
-
"reasoning": true,
|
|
71593
|
-
"input": [
|
|
71594
|
-
"text"
|
|
71595
|
-
],
|
|
71596
|
-
"cost": {
|
|
71597
|
-
"input": 1,
|
|
71598
|
-
"output": 3,
|
|
71599
|
-
"cacheRead": 1,
|
|
71600
|
-
"cacheWrite": 0
|
|
71601
|
-
},
|
|
71602
|
-
"contextWindow": 196608,
|
|
71603
|
-
"maxTokens": 65536,
|
|
71604
|
-
"thinking": {
|
|
71605
|
-
"mode": "effort",
|
|
71606
|
-
"efforts": [
|
|
71607
|
-
"minimal",
|
|
71608
|
-
"low",
|
|
71609
|
-
"medium",
|
|
71610
|
-
"high",
|
|
71611
|
-
"xhigh"
|
|
71612
|
-
]
|
|
71613
|
-
}
|
|
71614
|
-
},
|
|
71615
72182
|
"hf:zai-org/GLM-5.2": {
|
|
71616
72183
|
"id": "hf:zai-org/GLM-5.2",
|
|
71617
|
-
"name": "GLM-5.2",
|
|
72184
|
+
"name": "zai-org/GLM-5.2",
|
|
71618
72185
|
"api": "openai-completions",
|
|
71619
72186
|
"provider": "synthetic",
|
|
71620
72187
|
"baseUrl": "https://api.synthetic.new/openai/v1",
|
|
@@ -71925,8 +72492,8 @@
|
|
|
71925
72492
|
"text"
|
|
71926
72493
|
],
|
|
71927
72494
|
"cost": {
|
|
71928
|
-
"input":
|
|
71929
|
-
"output":
|
|
72495
|
+
"input": 1.04,
|
|
72496
|
+
"output": 1.04,
|
|
71930
72497
|
"cacheRead": 0,
|
|
71931
72498
|
"cacheWrite": 0
|
|
71932
72499
|
},
|
|
@@ -81342,12 +81909,12 @@
|
|
|
81342
81909
|
"text"
|
|
81343
81910
|
],
|
|
81344
81911
|
"cost": {
|
|
81345
|
-
"input": 1.
|
|
81346
|
-
"output": 4.
|
|
81347
|
-
"cacheRead": 0.
|
|
81912
|
+
"input": 1.4,
|
|
81913
|
+
"output": 4.4,
|
|
81914
|
+
"cacheRead": 0.26,
|
|
81348
81915
|
"cacheWrite": 0
|
|
81349
81916
|
},
|
|
81350
|
-
"contextWindow":
|
|
81917
|
+
"contextWindow": 1040000,
|
|
81351
81918
|
"maxTokens": 128000,
|
|
81352
81919
|
"thinking": {
|
|
81353
81920
|
"mode": "budget",
|
|
@@ -82388,14 +82955,6 @@
|
|
|
82388
82955
|
},
|
|
82389
82956
|
"contextWindow": 2000000,
|
|
82390
82957
|
"maxTokens": 2000000,
|
|
82391
|
-
"compat": {
|
|
82392
|
-
"reasoningEffortMap": {
|
|
82393
|
-
"minimal": "low"
|
|
82394
|
-
},
|
|
82395
|
-
"includeEncryptedReasoning": false,
|
|
82396
|
-
"filterReasoningHistory": true,
|
|
82397
|
-
"omitReasoningEffort": false
|
|
82398
|
-
},
|
|
82399
82958
|
"thinking": {
|
|
82400
82959
|
"mode": "effort",
|
|
82401
82960
|
"efforts": [
|
|
@@ -82408,6 +82967,14 @@
|
|
|
82408
82967
|
"effortMap": {
|
|
82409
82968
|
"minimal": "low"
|
|
82410
82969
|
}
|
|
82970
|
+
},
|
|
82971
|
+
"compat": {
|
|
82972
|
+
"reasoningEffortMap": {
|
|
82973
|
+
"minimal": "low"
|
|
82974
|
+
},
|
|
82975
|
+
"includeEncryptedReasoning": false,
|
|
82976
|
+
"filterReasoningHistory": true,
|
|
82977
|
+
"omitReasoningEffort": false
|
|
82411
82978
|
}
|
|
82412
82979
|
},
|
|
82413
82980
|
"grok-4.3": {
|
|
@@ -82429,14 +82996,6 @@
|
|
|
82429
82996
|
},
|
|
82430
82997
|
"contextWindow": 1000000,
|
|
82431
82998
|
"maxTokens": 1000000,
|
|
82432
|
-
"compat": {
|
|
82433
|
-
"reasoningEffortMap": {
|
|
82434
|
-
"minimal": "low"
|
|
82435
|
-
},
|
|
82436
|
-
"includeEncryptedReasoning": false,
|
|
82437
|
-
"filterReasoningHistory": true,
|
|
82438
|
-
"omitReasoningEffort": false
|
|
82439
|
-
},
|
|
82440
82999
|
"thinking": {
|
|
82441
83000
|
"mode": "effort",
|
|
82442
83001
|
"efforts": [
|
|
@@ -82449,6 +83008,14 @@
|
|
|
82449
83008
|
"effortMap": {
|
|
82450
83009
|
"minimal": "low"
|
|
82451
83010
|
}
|
|
83011
|
+
},
|
|
83012
|
+
"compat": {
|
|
83013
|
+
"reasoningEffortMap": {
|
|
83014
|
+
"minimal": "low"
|
|
83015
|
+
},
|
|
83016
|
+
"includeEncryptedReasoning": false,
|
|
83017
|
+
"filterReasoningHistory": true,
|
|
83018
|
+
"omitReasoningEffort": false
|
|
82452
83019
|
}
|
|
82453
83020
|
},
|
|
82454
83021
|
"grok-build": {
|
|
@@ -83619,6 +84186,44 @@
|
|
|
83619
84186
|
"supportsDisplay": true
|
|
83620
84187
|
}
|
|
83621
84188
|
},
|
|
84189
|
+
"anthropic/claude-fable-5-free": {
|
|
84190
|
+
"id": "anthropic/claude-fable-5-free",
|
|
84191
|
+
"name": "Claude Fable 5 (Free)",
|
|
84192
|
+
"api": "anthropic-messages",
|
|
84193
|
+
"provider": "zenmux",
|
|
84194
|
+
"baseUrl": "https://zenmux.ai/api/anthropic",
|
|
84195
|
+
"reasoning": true,
|
|
84196
|
+
"input": [
|
|
84197
|
+
"text",
|
|
84198
|
+
"image"
|
|
84199
|
+
],
|
|
84200
|
+
"cost": {
|
|
84201
|
+
"input": 0,
|
|
84202
|
+
"output": 0,
|
|
84203
|
+
"cacheRead": 0,
|
|
84204
|
+
"cacheWrite": 0
|
|
84205
|
+
},
|
|
84206
|
+
"contextWindow": 1000000,
|
|
84207
|
+
"maxTokens": 128000,
|
|
84208
|
+
"thinking": {
|
|
84209
|
+
"mode": "anthropic-adaptive",
|
|
84210
|
+
"efforts": [
|
|
84211
|
+
"minimal",
|
|
84212
|
+
"low",
|
|
84213
|
+
"medium",
|
|
84214
|
+
"high",
|
|
84215
|
+
"xhigh"
|
|
84216
|
+
],
|
|
84217
|
+
"effortMap": {
|
|
84218
|
+
"minimal": "low",
|
|
84219
|
+
"low": "medium",
|
|
84220
|
+
"medium": "high",
|
|
84221
|
+
"high": "xhigh",
|
|
84222
|
+
"xhigh": "max"
|
|
84223
|
+
},
|
|
84224
|
+
"supportsDisplay": true
|
|
84225
|
+
}
|
|
84226
|
+
},
|
|
83622
84227
|
"anthropic/claude-haiku-4.5": {
|
|
83623
84228
|
"id": "anthropic/claude-haiku-4.5",
|
|
83624
84229
|
"name": "Claude Haiku 4.5",
|
|
@@ -12,6 +12,7 @@ import {
|
|
|
12
12
|
aimlApiModelManagerOptions,
|
|
13
13
|
alibabaCodingPlanModelManagerOptions,
|
|
14
14
|
anthropicModelManagerOptions,
|
|
15
|
+
basetenModelManagerOptions,
|
|
15
16
|
cerebrasModelManagerOptions,
|
|
16
17
|
cloudflareAiGatewayModelManagerOptions,
|
|
17
18
|
coreWeaveModelManagerOptions,
|
|
@@ -73,6 +74,14 @@ export const CATALOG_PROVIDERS = [
|
|
|
73
74
|
createModelManagerOptions: (config: ModelManagerConfig) => alibabaCodingPlanModelManagerOptions(config),
|
|
74
75
|
catalogDiscovery: { label: "Alibaba Coding Plan" },
|
|
75
76
|
},
|
|
77
|
+
{
|
|
78
|
+
id: "baseten",
|
|
79
|
+
defaultModel: "moonshotai/Kimi-K2.7-Code",
|
|
80
|
+
envVars: ["BASETEN_API_KEY"],
|
|
81
|
+
createModelManagerOptions: (config: ModelManagerConfig) => basetenModelManagerOptions(config),
|
|
82
|
+
dynamicModelsAuthoritative: true,
|
|
83
|
+
catalogDiscovery: { label: "Baseten" },
|
|
84
|
+
},
|
|
76
85
|
{
|
|
77
86
|
id: "amazon-bedrock",
|
|
78
87
|
defaultModel: "us.anthropic.claude-opus-4-8",
|
|
@@ -2551,6 +2551,103 @@ export function veniceModelManagerOptions(
|
|
|
2551
2551
|
};
|
|
2552
2552
|
}
|
|
2553
2553
|
|
|
2554
|
+
// ---------------------------------------------------------------------------
|
|
2555
|
+
// 14.5 Baseten
|
|
2556
|
+
// ---------------------------------------------------------------------------
|
|
2557
|
+
|
|
2558
|
+
export interface BasetenModelManagerConfig {
|
|
2559
|
+
apiKey?: string;
|
|
2560
|
+
baseUrl?: string;
|
|
2561
|
+
fetch?: FetchImpl;
|
|
2562
|
+
}
|
|
2563
|
+
|
|
2564
|
+
export function basetenModelManagerOptions(
|
|
2565
|
+
config?: BasetenModelManagerConfig,
|
|
2566
|
+
): ModelManagerOptions<"openai-completions"> {
|
|
2567
|
+
const apiKey = config?.apiKey;
|
|
2568
|
+
const baseUrl = config?.baseUrl ?? "https://inference.baseten.co/v1";
|
|
2569
|
+
const references = createBundledReferenceMap<"openai-completions">("baseten");
|
|
2570
|
+
return {
|
|
2571
|
+
providerId: "baseten",
|
|
2572
|
+
dynamicModelsAuthoritative: true,
|
|
2573
|
+
...(apiKey && {
|
|
2574
|
+
fetchDynamicModels: () =>
|
|
2575
|
+
fetchOpenAICompatibleModels({
|
|
2576
|
+
api: "openai-completions",
|
|
2577
|
+
provider: "baseten",
|
|
2578
|
+
baseUrl,
|
|
2579
|
+
apiKey,
|
|
2580
|
+
mapModel: (entry, defaults) => {
|
|
2581
|
+
const reference = references.get(defaults.id);
|
|
2582
|
+
const raw = entry as Record<string, unknown> & {
|
|
2583
|
+
supported_features?: unknown;
|
|
2584
|
+
input_modalities?: unknown;
|
|
2585
|
+
pricing?: Record<string, unknown>;
|
|
2586
|
+
};
|
|
2587
|
+
const features = Array.isArray(raw.supported_features) ? raw.supported_features : [];
|
|
2588
|
+
const modalities = Array.isArray(raw.input_modalities) ? raw.input_modalities : [];
|
|
2589
|
+
|
|
2590
|
+
const isBasetenNativeReasoning =
|
|
2591
|
+
defaults.id === "openai/gpt-oss-120b" ||
|
|
2592
|
+
defaults.id === "deepseek-ai/DeepSeek-V4-Pro" ||
|
|
2593
|
+
defaults.id === "zai-org/GLM-5.2";
|
|
2594
|
+
const reasoning =
|
|
2595
|
+
isBasetenNativeReasoning &&
|
|
2596
|
+
(features.includes("reasoning") || features.includes("reasoning_effort"));
|
|
2597
|
+
const supportsTools = features.includes("tools") ? undefined : false;
|
|
2598
|
+
const vision = modalities.includes("image") || (reference?.input.includes("image") ?? false);
|
|
2599
|
+
|
|
2600
|
+
const pricing = raw.pricing ?? {};
|
|
2601
|
+
const cost = {
|
|
2602
|
+
input: toPositiveNumber(pricing.prompt, 0) * 1_000_000,
|
|
2603
|
+
output: toPositiveNumber(pricing.completion, 0) * 1_000_000,
|
|
2604
|
+
cacheRead: toPositiveNumber(pricing.input_cache_read, 0) * 1_000_000,
|
|
2605
|
+
cacheWrite: 0,
|
|
2606
|
+
};
|
|
2607
|
+
|
|
2608
|
+
const contextWindow = toPositiveNumber(
|
|
2609
|
+
raw.context_length,
|
|
2610
|
+
reference?.contextWindow ?? defaults.contextWindow,
|
|
2611
|
+
);
|
|
2612
|
+
const maxTokens = toPositiveNumber(
|
|
2613
|
+
raw.max_completion_tokens,
|
|
2614
|
+
reference?.maxTokens ?? defaults.maxTokens,
|
|
2615
|
+
);
|
|
2616
|
+
|
|
2617
|
+
const baseModel = mapWithBundledReference(entry, defaults, reference);
|
|
2618
|
+
|
|
2619
|
+
const isEffortReasoning = defaults.id === "openai/gpt-oss-120b" || defaults.id === "zai-org/GLM-5.2";
|
|
2620
|
+
const thinking = isEffortReasoning
|
|
2621
|
+
? {
|
|
2622
|
+
mode: "effort" as const,
|
|
2623
|
+
efforts: [Effort.Minimal, Effort.Low, Effort.Medium, Effort.High, Effort.XHigh],
|
|
2624
|
+
effortMap: {
|
|
2625
|
+
minimal: "high",
|
|
2626
|
+
low: "high",
|
|
2627
|
+
medium: "high",
|
|
2628
|
+
high: "high",
|
|
2629
|
+
xhigh: "max",
|
|
2630
|
+
},
|
|
2631
|
+
}
|
|
2632
|
+
: undefined;
|
|
2633
|
+
|
|
2634
|
+
return {
|
|
2635
|
+
...baseModel,
|
|
2636
|
+
reasoning,
|
|
2637
|
+
input: vision ? ["text", "image"] : ["text"],
|
|
2638
|
+
cost,
|
|
2639
|
+
contextWindow,
|
|
2640
|
+
maxTokens,
|
|
2641
|
+
...(thinking ? { thinking } : {}),
|
|
2642
|
+
...(supportsTools === false ? { supportsTools } : {}),
|
|
2643
|
+
};
|
|
2644
|
+
},
|
|
2645
|
+
fetch: config?.fetch,
|
|
2646
|
+
}),
|
|
2647
|
+
}),
|
|
2648
|
+
};
|
|
2649
|
+
}
|
|
2650
|
+
|
|
2554
2651
|
// ---------------------------------------------------------------------------
|
|
2555
2652
|
// 15. Together
|
|
2556
2653
|
// ---------------------------------------------------------------------------
|