-
Notifications
You must be signed in to change notification settings - Fork 2.4k
update sambanova models #8186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update sambanova models #8186
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,10 +6,12 @@ export type SambaNovaModelId = | |
| | "Meta-Llama-3.3-70B-Instruct" | ||
| | "DeepSeek-R1" | ||
| | "DeepSeek-V3-0324" | ||
| | "DeepSeek-V3.1" | ||
| | "DeepSeek-R1-Distill-Llama-70B" | ||
| | "Llama-4-Maverick-17B-128E-Instruct" | ||
| | "Llama-3.3-Swallow-70B-Instruct-v0.4" | ||
| | "Qwen3-32B" | ||
| | "gpt-oss-120b" | ||
|
|
||
| export const sambaNovaDefaultModelId: SambaNovaModelId = "Meta-Llama-3.3-70B-Instruct" | ||
|
|
||
|
|
@@ -51,6 +53,15 @@ export const sambaNovaModels = { | |
| outputPrice: 4.5, | ||
| description: "DeepSeek V3 model with 32K context window.", | ||
| }, | ||
| "DeepSeek-V3.1": { | ||
| maxTokens: 8192, | ||
| contextWindow: 32768, | ||
| supportsImages: false, | ||
| supportsPromptCache: false, | ||
| inputPrice: 3.0, | ||
| outputPrice: 4.5, | ||
| description: "DeepSeek V3.1 model with 32K context window.", | ||
| }, | ||
| "DeepSeek-R1-Distill-Llama-70B": { | ||
| maxTokens: 8192, | ||
| contextWindow: 131072, | ||
|
|
@@ -87,4 +98,13 @@ export const sambaNovaModels = { | |
| outputPrice: 0.8, | ||
| description: "Alibaba Qwen 3 32B model with 8K context window.", | ||
| }, | ||
| "gpt-oss-120b": { | ||
| maxTokens: 8192, | ||
| contextWindow: 8192, | ||
snova-jorgep marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| supportsImages: false, | ||
| supportsPromptCache: false, | ||
| inputPrice: 0.22, | ||
| outputPrice: 0.59, | ||
| description: "OpenAI gpt oss 120b model with 128k context window.", | ||
| }, | ||
| } as const satisfies Record<string, ModelInfo> | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is
gpt-oss-120bthe official model name from SambaNova? The naming pattern differs from other models which use proper casing (e.g., "DeepSeek-V3.1"). Should this perhaps be "GPT-OSS-120B" for consistency with the naming convention used by other models?