Skip to content

Commit d6cb396

Browse files
authored
update sambanova models (#8186)
* update sambanova models * fix typo
1 parent c0e2c5e commit d6cb396

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

packages/types/src/providers/sambanova.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@ export type SambaNovaModelId =
66
| "Meta-Llama-3.3-70B-Instruct"
77
| "DeepSeek-R1"
88
| "DeepSeek-V3-0324"
9+
| "DeepSeek-V3.1"
910
| "DeepSeek-R1-Distill-Llama-70B"
1011
| "Llama-4-Maverick-17B-128E-Instruct"
1112
| "Llama-3.3-Swallow-70B-Instruct-v0.4"
1213
| "Qwen3-32B"
14+
| "gpt-oss-120b"
1315

1416
export const sambaNovaDefaultModelId: SambaNovaModelId = "Meta-Llama-3.3-70B-Instruct"
1517

@@ -51,6 +53,15 @@ export const sambaNovaModels = {
5153
outputPrice: 4.5,
5254
description: "DeepSeek V3 model with 32K context window.",
5355
},
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+
},
5465
"DeepSeek-R1-Distill-Llama-70B": {
5566
maxTokens: 8192,
5667
contextWindow: 131072,
@@ -87,4 +98,13 @@ export const sambaNovaModels = {
8798
outputPrice: 0.8,
8899
description: "Alibaba Qwen 3 32B model with 8K context window.",
89100
},
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+
},
90110
} as const satisfies Record<string, ModelInfo>

0 commit comments

Comments
 (0)