File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
packages/types/src/providers Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -6,10 +6,12 @@ export type SambaNovaModelId =
6
6
| "Meta-Llama-3.3-70B-Instruct"
7
7
| "DeepSeek-R1"
8
8
| "DeepSeek-V3-0324"
9
+ | "DeepSeek-V3.1"
9
10
| "DeepSeek-R1-Distill-Llama-70B"
10
11
| "Llama-4-Maverick-17B-128E-Instruct"
11
12
| "Llama-3.3-Swallow-70B-Instruct-v0.4"
12
13
| "Qwen3-32B"
14
+ | "gpt-oss-120b"
13
15
14
16
export const sambaNovaDefaultModelId : SambaNovaModelId = "Meta-Llama-3.3-70B-Instruct"
15
17
@@ -51,6 +53,15 @@ export const sambaNovaModels = {
51
53
outputPrice : 4.5 ,
52
54
description : "DeepSeek V3 model with 32K context window." ,
53
55
} ,
56
+ "DeepSeek-V3.1" : {
57
+ maxTokens : 8192 ,
58
+ contextWindow : 32768 ,
59
+ supportsImages : false ,
60
+ supportsPromptCache : false ,
61
+ inputPrice : 3.0 ,
62
+ outputPrice : 4.5 ,
63
+ description : "DeepSeek V3.1 model with 32K context window." ,
64
+ } ,
54
65
"DeepSeek-R1-Distill-Llama-70B" : {
55
66
maxTokens : 8192 ,
56
67
contextWindow : 131072 ,
@@ -87,4 +98,13 @@ export const sambaNovaModels = {
87
98
outputPrice : 0.8 ,
88
99
description : "Alibaba Qwen 3 32B model with 8K context window." ,
89
100
} ,
101
+ "gpt-oss-120b" : {
102
+ maxTokens : 8192 ,
103
+ contextWindow : 131072 ,
104
+ supportsImages : false ,
105
+ supportsPromptCache : false ,
106
+ inputPrice : 0.22 ,
107
+ outputPrice : 0.59 ,
108
+ description : "OpenAI gpt oss 120b model with 128k context window." ,
109
+ } ,
90
110
} as const satisfies Record < string , ModelInfo >
You can’t perform that action at this time.
0 commit comments