@llmgateway/models 0.0.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/dist/get-cheapest-from-available-providers.d.ts +30 -0
- package/dist/get-cheapest-from-available-providers.js +183 -0
- package/dist/get-cheapest-from-available-providers.js.map +1 -0
- package/dist/get-cheapest-model-for-provider.d.ts +2 -0
- package/dist/get-cheapest-model-for-provider.js +49 -0
- package/dist/get-cheapest-model-for-provider.js.map +1 -0
- package/dist/get-provider-endpoint.d.ts +3 -0
- package/dist/get-provider-endpoint.js +243 -0
- package/dist/get-provider-endpoint.js.map +1 -0
- package/dist/get-provider-headers.d.ts +5 -0
- package/dist/get-provider-headers.js +45 -0
- package/dist/get-provider-headers.js.map +1 -0
- package/dist/helpers.d.ts +1 -0
- package/dist/helpers.js +27 -0
- package/dist/helpers.js.map +1 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +17 -0
- package/dist/index.js.map +1 -0
- package/dist/models/alibaba.d.ts +686 -0
- package/dist/models/alibaba.js +789 -0
- package/dist/models/alibaba.js.map +1 -0
- package/dist/models/anthropic.d.ts +572 -0
- package/dist/models/anthropic.js +638 -0
- package/dist/models/anthropic.js.map +1 -0
- package/dist/models/aws-bedrock.d.ts +1 -0
- package/dist/models/aws-bedrock.js +2 -0
- package/dist/models/aws-bedrock.js.map +1 -0
- package/dist/models/bytedance.d.ts +131 -0
- package/dist/models/bytedance.js +151 -0
- package/dist/models/bytedance.js.map +1 -0
- package/dist/models/deepseek.d.ts +175 -0
- package/dist/models/deepseek.js +197 -0
- package/dist/models/deepseek.js.map +1 -0
- package/dist/models/google.d.ts +1065 -0
- package/dist/models/google.js +1201 -0
- package/dist/models/google.js.map +1 -0
- package/dist/models/llmgateway.d.ts +39 -0
- package/dist/models/llmgateway.js +59 -0
- package/dist/models/llmgateway.js.map +1 -0
- package/dist/models/meta.d.ts +263 -0
- package/dist/models/meta.js +300 -0
- package/dist/models/meta.js.map +1 -0
- package/dist/models/microsoft.d.ts +1 -0
- package/dist/models/microsoft.js +2 -0
- package/dist/models/microsoft.js.map +1 -0
- package/dist/models/minimax.d.ts +59 -0
- package/dist/models/minimax.js +68 -0
- package/dist/models/minimax.js.map +1 -0
- package/dist/models/mistral.d.ts +78 -0
- package/dist/models/mistral.js +92 -0
- package/dist/models/mistral.js.map +1 -0
- package/dist/models/moonshot.d.ts +165 -0
- package/dist/models/moonshot.js +184 -0
- package/dist/models/moonshot.js.map +1 -0
- package/dist/models/nousresearch.d.ts +21 -0
- package/dist/models/nousresearch.js +26 -0
- package/dist/models/nousresearch.js.map +1 -0
- package/dist/models/openai.d.ts +1018 -0
- package/dist/models/openai.js +1213 -0
- package/dist/models/openai.js.map +1 -0
- package/dist/models/perplexity.d.ts +67 -0
- package/dist/models/perplexity.js +78 -0
- package/dist/models/perplexity.js.map +1 -0
- package/dist/models/routeway.d.ts +161 -0
- package/dist/models/routeway.js +187 -0
- package/dist/models/routeway.js.map +1 -0
- package/dist/models/xai.d.ts +270 -0
- package/dist/models/xai.js +311 -0
- package/dist/models/xai.js.map +1 -0
- package/dist/models/zai.d.ts +492 -0
- package/dist/models/zai.js +551 -0
- package/dist/models/zai.js.map +1 -0
- package/dist/models.d.ts +5304 -0
- package/dist/models.js +37 -0
- package/dist/models.js.map +1 -0
- package/dist/models.spec.d.ts +1 -0
- package/dist/models.spec.js +263 -0
- package/dist/models.spec.js.map +1 -0
- package/dist/prepare-request-body.d.ts +10 -0
- package/dist/prepare-request-body.js +1081 -0
- package/dist/prepare-request-body.js.map +1 -0
- package/dist/prepare-request-body.spec.d.ts +1 -0
- package/dist/prepare-request-body.spec.js +231 -0
- package/dist/prepare-request-body.spec.js.map +1 -0
- package/dist/process-image-url.d.ts +4 -0
- package/dist/process-image-url.js +121 -0
- package/dist/process-image-url.js.map +1 -0
- package/dist/provider.d.ts +9 -0
- package/dist/provider.js +64 -0
- package/dist/provider.js.map +1 -0
- package/dist/providers.d.ts +405 -0
- package/dist/providers.js +413 -0
- package/dist/providers.js.map +1 -0
- package/dist/testing.d.ts +7 -0
- package/dist/testing.js +19 -0
- package/dist/testing.js.map +1 -0
- package/dist/transform-anthropic-messages.d.ts +2 -0
- package/dist/transform-anthropic-messages.js +185 -0
- package/dist/transform-anthropic-messages.js.map +1 -0
- package/dist/transform-google-messages.d.ts +25 -0
- package/dist/transform-google-messages.js +122 -0
- package/dist/transform-google-messages.js.map +1 -0
- package/dist/type-guards.d.ts +20 -0
- package/dist/type-guards.js +35 -0
- package/dist/type-guards.js.map +1 -0
- package/dist/types.d.ts +291 -0
- package/dist/types.js +28 -0
- package/dist/types.js.map +1 -0
- package/dist/validate-provider-key.d.ts +4 -0
- package/dist/validate-provider-key.js +113 -0
- package/dist/validate-provider-key.js.map +1 -0
- package/package.json +29 -0
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
export declare const moonshotModels: [{
|
|
2
|
+
readonly id: "kimi-k2";
|
|
3
|
+
readonly name: "Kimi K2";
|
|
4
|
+
readonly description: "Moonshot's Kimi K2 model for general tasks.";
|
|
5
|
+
readonly family: "moonshot";
|
|
6
|
+
readonly releasedAt: Date;
|
|
7
|
+
readonly providers: [{
|
|
8
|
+
readonly providerId: "groq";
|
|
9
|
+
readonly modelName: "moonshotai/kimi-k2-instruct";
|
|
10
|
+
readonly inputPrice: number;
|
|
11
|
+
readonly cachedInputPrice: number;
|
|
12
|
+
readonly outputPrice: number;
|
|
13
|
+
readonly requestPrice: 0;
|
|
14
|
+
readonly contextSize: 131072;
|
|
15
|
+
readonly maxOutput: 16384;
|
|
16
|
+
readonly streaming: true;
|
|
17
|
+
readonly vision: false;
|
|
18
|
+
readonly tools: true;
|
|
19
|
+
readonly jsonOutput: true;
|
|
20
|
+
}, {
|
|
21
|
+
readonly providerId: "novita";
|
|
22
|
+
readonly modelName: "moonshotai/kimi-k2-instruct";
|
|
23
|
+
readonly inputPrice: number;
|
|
24
|
+
readonly outputPrice: number;
|
|
25
|
+
readonly requestPrice: 0;
|
|
26
|
+
readonly contextSize: 131072;
|
|
27
|
+
readonly maxOutput: 131072;
|
|
28
|
+
readonly streaming: true;
|
|
29
|
+
readonly vision: false;
|
|
30
|
+
readonly tools: true;
|
|
31
|
+
readonly jsonOutput: true;
|
|
32
|
+
}, {
|
|
33
|
+
readonly providerId: "moonshot";
|
|
34
|
+
readonly modelName: "kimi-k2-0711-preview";
|
|
35
|
+
readonly inputPrice: number;
|
|
36
|
+
readonly outputPrice: number;
|
|
37
|
+
readonly cachedInputPrice: number;
|
|
38
|
+
readonly requestPrice: 0;
|
|
39
|
+
readonly contextSize: 128000;
|
|
40
|
+
readonly maxOutput: 128000;
|
|
41
|
+
readonly streaming: true;
|
|
42
|
+
readonly vision: false;
|
|
43
|
+
readonly tools: true;
|
|
44
|
+
readonly jsonOutput: true;
|
|
45
|
+
}, {
|
|
46
|
+
readonly providerId: "moonshot";
|
|
47
|
+
readonly modelName: "kimi-k2-0905-preview";
|
|
48
|
+
readonly inputPrice: number;
|
|
49
|
+
readonly outputPrice: number;
|
|
50
|
+
readonly cachedInputPrice: number;
|
|
51
|
+
readonly requestPrice: 0;
|
|
52
|
+
readonly contextSize: 128000;
|
|
53
|
+
readonly maxOutput: 128000;
|
|
54
|
+
readonly streaming: true;
|
|
55
|
+
readonly vision: false;
|
|
56
|
+
readonly tools: true;
|
|
57
|
+
readonly jsonOutput: true;
|
|
58
|
+
}, {
|
|
59
|
+
readonly providerId: "cloudrift";
|
|
60
|
+
readonly modelName: "moonshotai/Kimi-K2-Instruct";
|
|
61
|
+
readonly inputPrice: number;
|
|
62
|
+
readonly outputPrice: number;
|
|
63
|
+
readonly requestPrice: 0;
|
|
64
|
+
readonly contextSize: 131072;
|
|
65
|
+
readonly maxOutput: 131072;
|
|
66
|
+
readonly streaming: true;
|
|
67
|
+
readonly vision: false;
|
|
68
|
+
readonly tools: true;
|
|
69
|
+
readonly test: "skip";
|
|
70
|
+
readonly jsonOutput: true;
|
|
71
|
+
}, {
|
|
72
|
+
readonly providerId: "nebius";
|
|
73
|
+
readonly modelName: "moonshotai/Kimi-K2-Instruct";
|
|
74
|
+
readonly inputPrice: number;
|
|
75
|
+
readonly outputPrice: number;
|
|
76
|
+
readonly requestPrice: 0;
|
|
77
|
+
readonly contextSize: 131072;
|
|
78
|
+
readonly maxOutput: 8192;
|
|
79
|
+
readonly streaming: true;
|
|
80
|
+
readonly vision: false;
|
|
81
|
+
readonly tools: true;
|
|
82
|
+
readonly jsonOutput: true;
|
|
83
|
+
}, {
|
|
84
|
+
readonly providerId: "bytedance";
|
|
85
|
+
readonly modelName: "kimi-k2-250905";
|
|
86
|
+
readonly inputPrice: number;
|
|
87
|
+
readonly cachedInputPrice: number;
|
|
88
|
+
readonly outputPrice: number;
|
|
89
|
+
readonly requestPrice: 0;
|
|
90
|
+
readonly contextSize: 256000;
|
|
91
|
+
readonly maxOutput: 32768;
|
|
92
|
+
readonly streaming: true;
|
|
93
|
+
readonly vision: false;
|
|
94
|
+
readonly tools: true;
|
|
95
|
+
readonly jsonOutput: false;
|
|
96
|
+
}];
|
|
97
|
+
}, {
|
|
98
|
+
readonly id: "kimi-k2-thinking";
|
|
99
|
+
readonly name: "Kimi K2 Thinking";
|
|
100
|
+
readonly description: "Kimi K2 with extended thinking capabilities.";
|
|
101
|
+
readonly family: "moonshot";
|
|
102
|
+
readonly releasedAt: Date;
|
|
103
|
+
readonly providers: [{
|
|
104
|
+
readonly providerId: "moonshot";
|
|
105
|
+
readonly modelName: "kimi-k2-thinking";
|
|
106
|
+
readonly inputPrice: number;
|
|
107
|
+
readonly outputPrice: number;
|
|
108
|
+
readonly cachedInputPrice: number;
|
|
109
|
+
readonly requestPrice: 0;
|
|
110
|
+
readonly contextSize: 262144;
|
|
111
|
+
readonly maxOutput: 262144;
|
|
112
|
+
readonly reasoning: true;
|
|
113
|
+
readonly streaming: true;
|
|
114
|
+
readonly vision: false;
|
|
115
|
+
readonly tools: true;
|
|
116
|
+
readonly jsonOutput: true;
|
|
117
|
+
}, {
|
|
118
|
+
readonly providerId: "canopywave";
|
|
119
|
+
readonly modelName: "moonshotai/kimi-k2-thinking";
|
|
120
|
+
readonly inputPrice: number;
|
|
121
|
+
readonly outputPrice: number;
|
|
122
|
+
readonly discount: 0.75;
|
|
123
|
+
readonly requestPrice: 0;
|
|
124
|
+
readonly contextSize: 262144;
|
|
125
|
+
readonly streaming: true;
|
|
126
|
+
readonly vision: false;
|
|
127
|
+
readonly tools: true;
|
|
128
|
+
readonly jsonOutput: true;
|
|
129
|
+
}, {
|
|
130
|
+
readonly providerId: "bytedance";
|
|
131
|
+
readonly modelName: "kimi-k2-thinking-251104";
|
|
132
|
+
readonly inputPrice: number;
|
|
133
|
+
readonly cachedInputPrice: number;
|
|
134
|
+
readonly outputPrice: number;
|
|
135
|
+
readonly requestPrice: 0;
|
|
136
|
+
readonly contextSize: 256000;
|
|
137
|
+
readonly maxOutput: 32768;
|
|
138
|
+
readonly reasoning: true;
|
|
139
|
+
readonly streaming: true;
|
|
140
|
+
readonly vision: false;
|
|
141
|
+
readonly tools: true;
|
|
142
|
+
readonly jsonOutput: false;
|
|
143
|
+
}];
|
|
144
|
+
}, {
|
|
145
|
+
readonly id: "kimi-k2-thinking-turbo";
|
|
146
|
+
readonly name: "Kimi K2 Thinking Turbo";
|
|
147
|
+
readonly description: "Faster turbo variant of Kimi K2 with extended thinking.";
|
|
148
|
+
readonly family: "moonshot";
|
|
149
|
+
readonly releasedAt: Date;
|
|
150
|
+
readonly providers: [{
|
|
151
|
+
readonly providerId: "moonshot";
|
|
152
|
+
readonly modelName: "kimi-k2-thinking-turbo";
|
|
153
|
+
readonly inputPrice: number;
|
|
154
|
+
readonly outputPrice: number;
|
|
155
|
+
readonly cachedInputPrice: number;
|
|
156
|
+
readonly requestPrice: 0;
|
|
157
|
+
readonly contextSize: 262144;
|
|
158
|
+
readonly maxOutput: 262144;
|
|
159
|
+
readonly reasoning: true;
|
|
160
|
+
readonly streaming: true;
|
|
161
|
+
readonly vision: false;
|
|
162
|
+
readonly tools: true;
|
|
163
|
+
readonly jsonOutput: true;
|
|
164
|
+
}];
|
|
165
|
+
}];
|
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
export const moonshotModels = [
|
|
2
|
+
{
|
|
3
|
+
id: "kimi-k2",
|
|
4
|
+
name: "Kimi K2",
|
|
5
|
+
description: "Moonshot's Kimi K2 model for general tasks.",
|
|
6
|
+
family: "moonshot",
|
|
7
|
+
releasedAt: new Date("2025-07-11"),
|
|
8
|
+
providers: [
|
|
9
|
+
{
|
|
10
|
+
providerId: "groq",
|
|
11
|
+
modelName: "moonshotai/kimi-k2-instruct",
|
|
12
|
+
inputPrice: 1.0 / 1e6,
|
|
13
|
+
cachedInputPrice: 0.5 / 1e6,
|
|
14
|
+
outputPrice: 3.0 / 1e6,
|
|
15
|
+
requestPrice: 0,
|
|
16
|
+
contextSize: 131072,
|
|
17
|
+
maxOutput: 16384,
|
|
18
|
+
streaming: true,
|
|
19
|
+
vision: false,
|
|
20
|
+
tools: true,
|
|
21
|
+
jsonOutput: true,
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
providerId: "novita",
|
|
25
|
+
modelName: "moonshotai/kimi-k2-instruct",
|
|
26
|
+
inputPrice: 0.57 / 1e6,
|
|
27
|
+
outputPrice: 2.3 / 1e6,
|
|
28
|
+
requestPrice: 0,
|
|
29
|
+
contextSize: 131072,
|
|
30
|
+
maxOutput: 131072,
|
|
31
|
+
streaming: true,
|
|
32
|
+
vision: false,
|
|
33
|
+
tools: true,
|
|
34
|
+
jsonOutput: true,
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
providerId: "moonshot",
|
|
38
|
+
modelName: "kimi-k2-0711-preview",
|
|
39
|
+
inputPrice: 0.6 / 1e6,
|
|
40
|
+
outputPrice: 2.5 / 1e6,
|
|
41
|
+
cachedInputPrice: 0.15 / 1e6,
|
|
42
|
+
requestPrice: 0,
|
|
43
|
+
contextSize: 128000,
|
|
44
|
+
maxOutput: 128000,
|
|
45
|
+
streaming: true,
|
|
46
|
+
vision: false,
|
|
47
|
+
tools: true,
|
|
48
|
+
jsonOutput: true,
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
providerId: "moonshot",
|
|
52
|
+
modelName: "kimi-k2-0905-preview",
|
|
53
|
+
inputPrice: 0.6 / 1e6,
|
|
54
|
+
outputPrice: 2.5 / 1e6,
|
|
55
|
+
cachedInputPrice: 0.15 / 1e6,
|
|
56
|
+
requestPrice: 0,
|
|
57
|
+
contextSize: 128000,
|
|
58
|
+
maxOutput: 128000,
|
|
59
|
+
streaming: true,
|
|
60
|
+
vision: false,
|
|
61
|
+
tools: true,
|
|
62
|
+
jsonOutput: true,
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
providerId: "cloudrift",
|
|
66
|
+
modelName: "moonshotai/Kimi-K2-Instruct",
|
|
67
|
+
inputPrice: 0.3 / 1e6,
|
|
68
|
+
outputPrice: 1.75 / 1e6,
|
|
69
|
+
requestPrice: 0,
|
|
70
|
+
contextSize: 131072,
|
|
71
|
+
maxOutput: 131072,
|
|
72
|
+
streaming: true,
|
|
73
|
+
vision: false,
|
|
74
|
+
tools: true,
|
|
75
|
+
test: "skip",
|
|
76
|
+
jsonOutput: true,
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
providerId: "nebius",
|
|
80
|
+
modelName: "moonshotai/Kimi-K2-Instruct",
|
|
81
|
+
inputPrice: 0.5 / 1e6,
|
|
82
|
+
outputPrice: 2.4 / 1e6,
|
|
83
|
+
requestPrice: 0,
|
|
84
|
+
contextSize: 131072,
|
|
85
|
+
maxOutput: 8192,
|
|
86
|
+
streaming: true,
|
|
87
|
+
vision: false,
|
|
88
|
+
tools: true,
|
|
89
|
+
jsonOutput: true,
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
providerId: "bytedance",
|
|
93
|
+
modelName: "kimi-k2-250905",
|
|
94
|
+
inputPrice: 0.6 / 1e6,
|
|
95
|
+
cachedInputPrice: 0.12 / 1e6,
|
|
96
|
+
outputPrice: 2.5 / 1e6,
|
|
97
|
+
requestPrice: 0,
|
|
98
|
+
contextSize: 256000,
|
|
99
|
+
maxOutput: 32768,
|
|
100
|
+
streaming: true,
|
|
101
|
+
vision: false,
|
|
102
|
+
tools: true,
|
|
103
|
+
jsonOutput: false,
|
|
104
|
+
},
|
|
105
|
+
],
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
id: "kimi-k2-thinking",
|
|
109
|
+
name: "Kimi K2 Thinking",
|
|
110
|
+
description: "Kimi K2 with extended thinking capabilities.",
|
|
111
|
+
family: "moonshot",
|
|
112
|
+
releasedAt: new Date("2025-11-06"),
|
|
113
|
+
providers: [
|
|
114
|
+
{
|
|
115
|
+
providerId: "moonshot",
|
|
116
|
+
modelName: "kimi-k2-thinking",
|
|
117
|
+
inputPrice: 0.6 / 1e6,
|
|
118
|
+
outputPrice: 2.5 / 1e6,
|
|
119
|
+
cachedInputPrice: 0.15 / 1e6,
|
|
120
|
+
requestPrice: 0,
|
|
121
|
+
contextSize: 262144,
|
|
122
|
+
maxOutput: 262144,
|
|
123
|
+
reasoning: true,
|
|
124
|
+
streaming: true,
|
|
125
|
+
vision: false,
|
|
126
|
+
tools: true,
|
|
127
|
+
jsonOutput: true,
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
providerId: "canopywave",
|
|
131
|
+
modelName: "moonshotai/kimi-k2-thinking",
|
|
132
|
+
inputPrice: 0.48 / 1e6,
|
|
133
|
+
outputPrice: 2.0 / 1e6,
|
|
134
|
+
discount: 0.75,
|
|
135
|
+
requestPrice: 0,
|
|
136
|
+
contextSize: 262144,
|
|
137
|
+
streaming: true,
|
|
138
|
+
vision: false,
|
|
139
|
+
tools: true,
|
|
140
|
+
jsonOutput: true,
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
providerId: "bytedance",
|
|
144
|
+
modelName: "kimi-k2-thinking-251104",
|
|
145
|
+
inputPrice: 0.6 / 1e6,
|
|
146
|
+
cachedInputPrice: 0.12 / 1e6,
|
|
147
|
+
outputPrice: 2.5 / 1e6,
|
|
148
|
+
requestPrice: 0,
|
|
149
|
+
contextSize: 256000,
|
|
150
|
+
maxOutput: 32768,
|
|
151
|
+
reasoning: true,
|
|
152
|
+
streaming: true,
|
|
153
|
+
vision: false,
|
|
154
|
+
tools: true,
|
|
155
|
+
jsonOutput: false,
|
|
156
|
+
},
|
|
157
|
+
],
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
id: "kimi-k2-thinking-turbo",
|
|
161
|
+
name: "Kimi K2 Thinking Turbo",
|
|
162
|
+
description: "Faster turbo variant of Kimi K2 with extended thinking.",
|
|
163
|
+
family: "moonshot",
|
|
164
|
+
releasedAt: new Date("2025-11-06"),
|
|
165
|
+
providers: [
|
|
166
|
+
{
|
|
167
|
+
providerId: "moonshot",
|
|
168
|
+
modelName: "kimi-k2-thinking-turbo",
|
|
169
|
+
inputPrice: 1.15 / 1e6,
|
|
170
|
+
outputPrice: 8.0 / 1e6,
|
|
171
|
+
cachedInputPrice: 0.15 / 1e6,
|
|
172
|
+
requestPrice: 0,
|
|
173
|
+
contextSize: 262144,
|
|
174
|
+
maxOutput: 262144,
|
|
175
|
+
reasoning: true,
|
|
176
|
+
streaming: true,
|
|
177
|
+
vision: false,
|
|
178
|
+
tools: true,
|
|
179
|
+
jsonOutput: true,
|
|
180
|
+
},
|
|
181
|
+
],
|
|
182
|
+
},
|
|
183
|
+
];
|
|
184
|
+
//# sourceMappingURL=moonshot.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"moonshot.js","sourceRoot":"","sources":["../../src/models/moonshot.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare const nousresearchModels: [{
|
|
2
|
+
readonly id: "hermes-3-llama-405b";
|
|
3
|
+
readonly name: "Hermes 3 Llama 405B";
|
|
4
|
+
readonly description: "Nous Research Hermes 3 based on Llama 405B.";
|
|
5
|
+
readonly family: "nousresearch";
|
|
6
|
+
readonly releasedAt: Date;
|
|
7
|
+
readonly providers: [{
|
|
8
|
+
readonly providerId: "nebius";
|
|
9
|
+
readonly modelName: "NousResearch/Hermes-3-Llama-405B";
|
|
10
|
+
readonly inputPrice: number;
|
|
11
|
+
readonly outputPrice: number;
|
|
12
|
+
readonly requestPrice: 0;
|
|
13
|
+
readonly contextSize: 131072;
|
|
14
|
+
readonly maxOutput: undefined;
|
|
15
|
+
readonly streaming: true;
|
|
16
|
+
readonly vision: false;
|
|
17
|
+
readonly tools: false;
|
|
18
|
+
readonly jsonOutput: true;
|
|
19
|
+
readonly deactivatedAt: Date;
|
|
20
|
+
}];
|
|
21
|
+
}];
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export const nousresearchModels = [
|
|
2
|
+
{
|
|
3
|
+
id: "hermes-3-llama-405b",
|
|
4
|
+
name: "Hermes 3 Llama 405B",
|
|
5
|
+
description: "Nous Research Hermes 3 based on Llama 405B.",
|
|
6
|
+
family: "nousresearch",
|
|
7
|
+
releasedAt: new Date("2024-08-16"),
|
|
8
|
+
providers: [
|
|
9
|
+
{
|
|
10
|
+
providerId: "nebius",
|
|
11
|
+
modelName: "NousResearch/Hermes-3-Llama-405B",
|
|
12
|
+
inputPrice: 1.0 / 1e6,
|
|
13
|
+
outputPrice: 3.0 / 1e6,
|
|
14
|
+
requestPrice: 0,
|
|
15
|
+
contextSize: 131072,
|
|
16
|
+
maxOutput: undefined,
|
|
17
|
+
streaming: true,
|
|
18
|
+
vision: false,
|
|
19
|
+
tools: false,
|
|
20
|
+
jsonOutput: true,
|
|
21
|
+
deactivatedAt: new Date("2025-11-03"),
|
|
22
|
+
},
|
|
23
|
+
],
|
|
24
|
+
},
|
|
25
|
+
];
|
|
26
|
+
//# sourceMappingURL=nousresearch.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"nousresearch.js","sourceRoot":"","sources":["../../src/models/nousresearch.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,kBAAkB,GAAG;IACjC;QACC,EAAE,EAAE,qBAAqB;QACzB,IAAI,EAAE,qBAAqB;QAC3B,WAAW,EAAE,6CAA6C;QAC1D,MAAM,EAAE,cAAc;QACtB,UAAU,EAAE,IAAI,IAAI,CAAC,YAAY,CAAC;QAClC,SAAS,EAAE;YACV;gBACC,UAAU,EAAE,QAAQ;gBACpB,SAAS,EAAE,kCAAkC;gBAC7C,UAAU,EAAE,GAAG,GAAG,GAAG;gBACrB,WAAW,EAAE,GAAG,GAAG,GAAG;gBACtB,YAAY,EAAE,CAAC;gBACf,WAAW,EAAE,MAAM;gBACnB,SAAS,EAAE,SAAS;gBACpB,SAAS,EAAE,IAAI;gBACf,MAAM,EAAE,KAAK;gBACb,KAAK,EAAE,KAAK;gBACZ,UAAU,EAAE,IAAI;gBAChB,aAAa,EAAE,IAAI,IAAI,CAAC,YAAY,CAAC;aACrC;SACD;KACD;CACoC,CAAC"}
|