|
|
@@ -6,152 +6,68 @@ export type XAIModelId = keyof typeof xaiModels
|
|
|
export const xaiDefaultModelId: XAIModelId = "grok-3"
|
|
|
|
|
|
export const xaiModels = {
|
|
|
- "grok-3-beta": {
|
|
|
- maxTokens: 8192,
|
|
|
- contextWindow: 131072,
|
|
|
- supportsImages: false,
|
|
|
- supportsPromptCache: false,
|
|
|
- inputPrice: 3.0,
|
|
|
- outputPrice: 15.0,
|
|
|
- description: "xAI's Grok-3 beta model with 131K context window",
|
|
|
- },
|
|
|
- "grok-3-fast-beta": {
|
|
|
- maxTokens: 8192,
|
|
|
- contextWindow: 131072,
|
|
|
- supportsImages: false,
|
|
|
- supportsPromptCache: false,
|
|
|
- inputPrice: 5.0,
|
|
|
- outputPrice: 25.0,
|
|
|
- description: "xAI's Grok-3 fast beta model with 131K context window",
|
|
|
- },
|
|
|
- "grok-3-mini-beta": {
|
|
|
+ "grok-2-1212": {
|
|
|
maxTokens: 8192,
|
|
|
contextWindow: 131072,
|
|
|
supportsImages: false,
|
|
|
supportsPromptCache: false,
|
|
|
- inputPrice: 0.3,
|
|
|
- outputPrice: 0.5,
|
|
|
- description: "xAI's Grok-3 mini beta model with 131K context window",
|
|
|
- supportsReasoningEffort: true,
|
|
|
+ inputPrice: 2.0,
|
|
|
+ outputPrice: 10.0,
|
|
|
+ description: "xAI's Grok-2 model (version 1212) with 128K context window",
|
|
|
},
|
|
|
- "grok-3-mini-fast-beta": {
|
|
|
+ "grok-2-vision-1212": {
|
|
|
maxTokens: 8192,
|
|
|
- contextWindow: 131072,
|
|
|
- supportsImages: false,
|
|
|
+ contextWindow: 32768,
|
|
|
+ supportsImages: true,
|
|
|
supportsPromptCache: false,
|
|
|
- inputPrice: 0.6,
|
|
|
- outputPrice: 4.0,
|
|
|
- description: "xAI's Grok-3 mini fast beta model with 131K context window",
|
|
|
- supportsReasoningEffort: true,
|
|
|
+ inputPrice: 2.0,
|
|
|
+ outputPrice: 10.0,
|
|
|
+ description: "xAI's Grok-2 Vision model (version 1212) with image support and 32K context window",
|
|
|
},
|
|
|
"grok-3": {
|
|
|
maxTokens: 8192,
|
|
|
contextWindow: 131072,
|
|
|
supportsImages: false,
|
|
|
- supportsPromptCache: false,
|
|
|
+ supportsPromptCache: true,
|
|
|
inputPrice: 3.0,
|
|
|
outputPrice: 15.0,
|
|
|
- description: "xAI's Grok-3 model with 131K context window",
|
|
|
+ cacheWritesPrice: 0.75,
|
|
|
+ cacheReadsPrice: 0.75,
|
|
|
+ description: "xAI's Grok-3 model with 128K context window",
|
|
|
},
|
|
|
"grok-3-fast": {
|
|
|
maxTokens: 8192,
|
|
|
contextWindow: 131072,
|
|
|
supportsImages: false,
|
|
|
- supportsPromptCache: false,
|
|
|
+ supportsPromptCache: true,
|
|
|
inputPrice: 5.0,
|
|
|
outputPrice: 25.0,
|
|
|
- description: "xAI's Grok-3 fast model with 131K context window",
|
|
|
+ cacheWritesPrice: 1.25,
|
|
|
+ cacheReadsPrice: 1.25,
|
|
|
+ description: "xAI's Grok-3 fast model with 128K context window",
|
|
|
},
|
|
|
"grok-3-mini": {
|
|
|
maxTokens: 8192,
|
|
|
contextWindow: 131072,
|
|
|
supportsImages: false,
|
|
|
- supportsPromptCache: false,
|
|
|
+ supportsPromptCache: true,
|
|
|
inputPrice: 0.3,
|
|
|
outputPrice: 0.5,
|
|
|
- description: "xAI's Grok-3 mini model with 131K context window",
|
|
|
+ cacheWritesPrice: 0.07,
|
|
|
+ cacheReadsPrice: 0.07,
|
|
|
+ description: "xAI's Grok-3 mini model with 128K context window",
|
|
|
supportsReasoningEffort: true,
|
|
|
},
|
|
|
"grok-3-mini-fast": {
|
|
|
maxTokens: 8192,
|
|
|
contextWindow: 131072,
|
|
|
supportsImages: false,
|
|
|
- supportsPromptCache: false,
|
|
|
+ supportsPromptCache: true,
|
|
|
inputPrice: 0.6,
|
|
|
outputPrice: 4.0,
|
|
|
- description: "xAI's Grok-3 mini fast model with 131K context window",
|
|
|
+ cacheWritesPrice: 0.15,
|
|
|
+ cacheReadsPrice: 0.15,
|
|
|
+ description: "xAI's Grok-3 mini fast model with 128K context window",
|
|
|
supportsReasoningEffort: true,
|
|
|
},
|
|
|
- "grok-2-latest": {
|
|
|
- maxTokens: 8192,
|
|
|
- contextWindow: 131072,
|
|
|
- supportsImages: false,
|
|
|
- supportsPromptCache: false,
|
|
|
- inputPrice: 2.0,
|
|
|
- outputPrice: 10.0,
|
|
|
- description: "xAI's Grok-2 model - latest version with 131K context window",
|
|
|
- },
|
|
|
- "grok-2": {
|
|
|
- maxTokens: 8192,
|
|
|
- contextWindow: 131072,
|
|
|
- supportsImages: false,
|
|
|
- supportsPromptCache: false,
|
|
|
- inputPrice: 2.0,
|
|
|
- outputPrice: 10.0,
|
|
|
- description: "xAI's Grok-2 model with 131K context window",
|
|
|
- },
|
|
|
- "grok-2-1212": {
|
|
|
- maxTokens: 8192,
|
|
|
- contextWindow: 131072,
|
|
|
- supportsImages: false,
|
|
|
- supportsPromptCache: false,
|
|
|
- inputPrice: 2.0,
|
|
|
- outputPrice: 10.0,
|
|
|
- description: "xAI's Grok-2 model (version 1212) with 131K context window",
|
|
|
- },
|
|
|
- "grok-2-vision-latest": {
|
|
|
- maxTokens: 8192,
|
|
|
- contextWindow: 32768,
|
|
|
- supportsImages: true,
|
|
|
- supportsPromptCache: false,
|
|
|
- inputPrice: 2.0,
|
|
|
- outputPrice: 10.0,
|
|
|
- description: "xAI's Grok-2 Vision model - latest version with image support and 32K context window",
|
|
|
- },
|
|
|
- "grok-2-vision": {
|
|
|
- maxTokens: 8192,
|
|
|
- contextWindow: 32768,
|
|
|
- supportsImages: true,
|
|
|
- supportsPromptCache: false,
|
|
|
- inputPrice: 2.0,
|
|
|
- outputPrice: 10.0,
|
|
|
- description: "xAI's Grok-2 Vision model with image support and 32K context window",
|
|
|
- },
|
|
|
- "grok-2-vision-1212": {
|
|
|
- maxTokens: 8192,
|
|
|
- contextWindow: 32768,
|
|
|
- supportsImages: true,
|
|
|
- supportsPromptCache: false,
|
|
|
- inputPrice: 2.0,
|
|
|
- outputPrice: 10.0,
|
|
|
- description: "xAI's Grok-2 Vision model (version 1212) with image support and 32K context window",
|
|
|
- },
|
|
|
- "grok-vision-beta": {
|
|
|
- maxTokens: 8192,
|
|
|
- contextWindow: 8192,
|
|
|
- supportsImages: true,
|
|
|
- supportsPromptCache: false,
|
|
|
- inputPrice: 5.0,
|
|
|
- outputPrice: 15.0,
|
|
|
- description: "xAI's Grok Vision Beta model with image support and 8K context window",
|
|
|
- },
|
|
|
- "grok-beta": {
|
|
|
- maxTokens: 8192,
|
|
|
- contextWindow: 131072,
|
|
|
- supportsImages: false,
|
|
|
- supportsPromptCache: false,
|
|
|
- inputPrice: 5.0,
|
|
|
- outputPrice: 15.0,
|
|
|
- description: "xAI's Grok Beta model (legacy) with 131K context window",
|
|
|
- },
|
|
|
} as const satisfies Record<string, ModelInfo>
|