Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions packages/types/src/providers/baseten.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { ModelInfo } from "../model.js"

export const basetenModels = {
"moonshotai/Kimi-K2-Thinking": {
maxTokens: 163_800,
maxTokens: 16_384,
contextWindow: 262_000,
supportsImages: false,
supportsPromptCache: false,
Expand All @@ -17,7 +17,7 @@ export const basetenModels = {
description: "Kimi K2 Thinking - A model with enhanced reasoning capabilities from Kimi K2",
},
"zai-org/GLM-4.6": {
maxTokens: 200_000,
maxTokens: 16_384,
contextWindow: 200_000,
supportsImages: false,
supportsPromptCache: false,
Expand All @@ -29,7 +29,7 @@ export const basetenModels = {
description: "Frontier open model with advanced agentic, reasoning and coding capabilities",
},
"deepseek-ai/DeepSeek-R1": {
maxTokens: 131_072,
maxTokens: 16_384,
contextWindow: 163_840,
supportsImages: false,
supportsPromptCache: false,
Expand All @@ -40,7 +40,7 @@ export const basetenModels = {
description: "DeepSeek's first-generation reasoning model",
},
"deepseek-ai/DeepSeek-R1-0528": {
maxTokens: 131_072,
maxTokens: 16_384,
contextWindow: 163_840,
supportsImages: false,
supportsPromptCache: false,
Expand All @@ -51,7 +51,7 @@ export const basetenModels = {
description: "The latest revision of DeepSeek's first-generation reasoning model",
},
"deepseek-ai/DeepSeek-V3-0324": {
maxTokens: 131_072,
maxTokens: 16_384,
contextWindow: 163_840,
supportsImages: false,
supportsPromptCache: false,
Expand All @@ -62,7 +62,7 @@ export const basetenModels = {
description: "Fast general-purpose LLM with enhanced reasoning capabilities",
},
"deepseek-ai/DeepSeek-V3.1": {
maxTokens: 131_072,
maxTokens: 16_384,
contextWindow: 163_840,
supportsImages: false,
supportsPromptCache: false,
Expand All @@ -74,10 +74,11 @@ export const basetenModels = {
"Extremely capable general-purpose LLM with hybrid reasoning capabilities and advanced tool calling",
},
"deepseek-ai/DeepSeek-V3.2": {
maxTokens: 131_072,
maxTokens: 16_384,
contextWindow: 163_840,
supportsImages: false,
supportsPromptCache: false,
supportsNativeTools: true,
inputPrice: 0.3,
outputPrice: 0.45,
cacheWritesPrice: 0,
Expand All @@ -86,7 +87,7 @@ export const basetenModels = {
"DeepSeek's hybrid reasoning model with efficient long context scaling with GPT-5 level performance",
},
"Qwen/Qwen3-235B-A22B-Instruct-2507": {
maxTokens: 262_144,
maxTokens: 16_384,
contextWindow: 262_144,
supportsImages: false,
supportsPromptCache: false,
Expand All @@ -97,7 +98,7 @@ export const basetenModels = {
description: "Mixture-of-experts LLM with math and reasoning capabilities",
},
"Qwen/Qwen3-Coder-480B-A35B-Instruct": {
maxTokens: 262_144,
maxTokens: 16_384,
contextWindow: 262_144,
supportsImages: false,
supportsPromptCache: false,
Expand All @@ -108,7 +109,7 @@ export const basetenModels = {
description: "Mixture-of-experts LLM with advanced coding and reasoning capabilities",
},
"openai/gpt-oss-120b": {
maxTokens: 128_072,
maxTokens: 16_384,
contextWindow: 128_072,
supportsImages: false,
supportsPromptCache: false,
Expand All @@ -120,7 +121,7 @@ export const basetenModels = {
description: "Extremely capable general-purpose LLM with strong, controllable reasoning capabilities",
},
"moonshotai/Kimi-K2-Instruct-0905": {
maxTokens: 168_000,
maxTokens: 16_384,
contextWindow: 262_000,
supportsImages: false,
supportsPromptCache: false,
Expand Down
Loading