fix(models): support DeepSeek V4.1 vision and max effort
CI / typecheck (push) Failing after 51s
CI / format (push) Failing after 4s
CI / Oh My Pi compatibility (push) Failing after 1m7s
CI / CodeQL SAST (push) Failing after 26m15s
CI / Semgrep — pi extension audit (push) Failing after 8m15s
CI / Gitleaks — secrets scan (push) Failing after 8s
CI / Dependency review (push) Skipped
CI / npm audit (push) Failing after 6s
CI / Check lifecycle scripts (push) Failing after 2s
CI / typecheck (push) Failing after 51s
CI / format (push) Failing after 4s
CI / Oh My Pi compatibility (push) Failing after 1m7s
CI / CodeQL SAST (push) Failing after 26m15s
CI / Semgrep — pi extension audit (push) Failing after 8m15s
CI / Gitleaks — secrets scan (push) Failing after 8s
CI / Dependency review (push) Skipped
CI / npm audit (push) Failing after 6s
CI / Check lifecycle scripts (push) Failing after 2s
Refresh the generated capability catalog from command-code@1.44.0 to 1.53.1. deepseek/deepseek-v4.1-flash now advertises image input and its low, high, and max reasoning efforts, so pi forwards attached images and exposes the full thinking-level selector instead of reporting the model as text-only without selectable levels. The sync also adds gpt-6-astra, xai/grok-4.6, and inclusionai/ling-3.0-flash-sante:free metadata. Drop the now-obsolete manual Meta Muse Spark effort overrides because upstream publishes efforts for meta/muse-spark-1.1 through 1.3-contributor and MiniMaxAI/MiniMax-M3, and add a regression test for the V4.1 capabilities.
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
export const COMMAND_CODE_CLI_VERSION = "1.44.0"
|
||||
export const COMMAND_CODE_CLI_VERSION = "1.53.1"
|
||||
|
||||
export type CommandCodeInputType = "text" | "image"
|
||||
export type CommandCodeReasoningEffort = "minimal" | "low" | "medium" | "high" | "xhigh" | "max"
|
||||
|
||||
/**
|
||||
* Generated from command-code@1.44.0 by `npm run sync:commandcode-catalog`.
|
||||
* Generated from command-code@1.53.1 by `npm run sync:commandcode-catalog`.
|
||||
* Do not edit manually.
|
||||
*/
|
||||
export const MODEL_INPUT_MODALITIES: Readonly<Record<string, readonly CommandCodeInputType[]>> = {
|
||||
@@ -17,6 +17,7 @@ export const MODEL_INPUT_MODALITIES: Readonly<Record<string, readonly CommandCod
|
||||
"claude-sonnet-4-6": ["text", "image"],
|
||||
"claude-sonnet-5": ["text", "image"],
|
||||
"deepseek/deepseek-v4-flash-vision-exp": ["text", "image"],
|
||||
"deepseek/deepseek-v4.1-flash": ["text", "image"],
|
||||
"google/gemini-3.1-flash-lite": ["text", "image"],
|
||||
"google/gemini-3.5-flash": ["text", "image"],
|
||||
"google/gemini-3.5-flash-lite": ["text", "image"],
|
||||
@@ -30,6 +31,7 @@ export const MODEL_INPUT_MODALITIES: Readonly<Record<string, readonly CommandCod
|
||||
"gpt-5.6-luna": ["text", "image"],
|
||||
"gpt-5.6-sol": ["text", "image"],
|
||||
"gpt-5.6-terra": ["text", "image"],
|
||||
"gpt-6-astra": ["text", "image"],
|
||||
"meta/muse-spark-1.1": ["text", "image"],
|
||||
"meta/muse-spark-1.2": ["text", "image"],
|
||||
"meta/muse-spark-1.2-contributor": ["text", "image"],
|
||||
@@ -53,6 +55,7 @@ export const MODEL_INPUT_MODALITIES: Readonly<Record<string, readonly CommandCod
|
||||
"thinkingmachines/inkling": ["text", "image"],
|
||||
"thinkingmachines/inkling-small": ["text", "image"],
|
||||
"xai/grok-4.5": ["text", "image"],
|
||||
"xai/grok-4.6": ["text", "image"],
|
||||
"xiaomi/mimo-v2.5": ["text", "image"],
|
||||
"z-ai/glm-5.3-flash": ["text", "image"],
|
||||
}
|
||||
@@ -69,6 +72,7 @@ export const MODEL_REASONING: Readonly<Record<string, true>> = {
|
||||
"deepseek/deepseek-v4-flash-fast": true,
|
||||
"deepseek/deepseek-v4-flash-vision-exp": true,
|
||||
"deepseek/deepseek-v4-pro": true,
|
||||
"deepseek/deepseek-v4.1-flash": true,
|
||||
"google/gemini-3.1-flash-lite": true,
|
||||
"google/gemini-3.5-flash": true,
|
||||
"google/gemini-3.5-flash-lite": true,
|
||||
@@ -82,6 +86,8 @@ export const MODEL_REASONING: Readonly<Record<string, true>> = {
|
||||
"gpt-5.6-luna": true,
|
||||
"gpt-5.6-sol": true,
|
||||
"gpt-5.6-terra": true,
|
||||
"gpt-6-astra": true,
|
||||
"inclusionai/ling-3.0-flash-sante:free": true,
|
||||
"meituan/LongCat-2.0:free": true,
|
||||
"meta/muse-spark-1.1": true,
|
||||
"meta/muse-spark-1.2": true,
|
||||
@@ -129,6 +135,7 @@ export const MODEL_EFFORTS: Readonly<Record<string, readonly CommandCodeReasonin
|
||||
"deepseek/deepseek-v4-flash-fast": ["low", "high", "max"],
|
||||
"deepseek/deepseek-v4-flash-vision-exp": ["high", "max"],
|
||||
"deepseek/deepseek-v4-pro": ["high", "max"],
|
||||
"deepseek/deepseek-v4.1-flash": ["low", "high", "max"],
|
||||
"google/gemini-3.1-flash-lite": ["low", "medium", "high"],
|
||||
"google/gemini-3.5-flash": ["low", "medium", "high"],
|
||||
"google/gemini-3.5-flash-lite": ["low", "medium", "high"],
|
||||
@@ -142,6 +149,13 @@ export const MODEL_EFFORTS: Readonly<Record<string, readonly CommandCodeReasonin
|
||||
"gpt-5.6-luna": ["low", "medium", "high", "xhigh", "max"],
|
||||
"gpt-5.6-sol": ["low", "medium", "high", "xhigh", "max"],
|
||||
"gpt-5.6-terra": ["low", "medium", "high", "xhigh", "max"],
|
||||
"gpt-6-astra": ["low", "medium", "high", "xhigh", "max"],
|
||||
"meta/muse-spark-1.1": ["low", "medium", "high", "xhigh"],
|
||||
"meta/muse-spark-1.2": ["low", "medium", "high", "xhigh"],
|
||||
"meta/muse-spark-1.2-contributor": ["low", "medium", "high", "xhigh"],
|
||||
"meta/muse-spark-1.3": ["low", "medium", "high", "xhigh", "max"],
|
||||
"meta/muse-spark-1.3-contributor": ["low", "medium", "high", "xhigh"],
|
||||
"MiniMaxAI/MiniMax-M3": ["low", "medium", "high"],
|
||||
"moonshotai/Kimi-K3": ["low", "high", "max"],
|
||||
"Qwen/Qwen3.8-27B": ["low", "medium", "xhigh"],
|
||||
"Qwen/Qwen3.8-Flash": ["low", "medium", "xhigh"],
|
||||
@@ -157,6 +171,7 @@ export const MODEL_EFFORTS: Readonly<Record<string, readonly CommandCodeReasonin
|
||||
}
|
||||
|
||||
export const MODEL_MAX_OUTPUT_TOKENS: Readonly<Record<string, number>> = {
|
||||
"inclusionai/ling-3.0-flash-sante:free": 32_768,
|
||||
"poolside/laguna-s-2.1-free": 32_768,
|
||||
"Qwen/Qwen3.8-27B": 32_768,
|
||||
"z-ai/glm-5.3-flash": 131_072,
|
||||
|
||||
Reference in New Issue
Block a user