Browse Source

Fix max_tokens limit for moonshotai/kimi-k2-instruct on Groq (#5740)

Co-authored-by: Roo Code Bot <[email protected]>
roomote[bot] 5 months ago
parent
commit
29b7d06dd2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/types/src/providers/groq.ts

+ 1 - 1
packages/types/src/providers/groq.ts

@@ -89,7 +89,7 @@ export const groqModels = {
 		description: "DeepSeek R1 Distill Llama 70B model, 128K context.",
 	},
 	"moonshotai/kimi-k2-instruct": {
-		maxTokens: 8192,
+		maxTokens: 16384,
 		contextWindow: 131072,
 		supportsImages: false,
 		supportsPromptCache: false,