@tryarcanist/cli 0.1.196 → 0.1.198
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +36 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -648,6 +648,7 @@ var OpenAIModel = {
|
|
|
648
648
|
var AnthropicModel = {
|
|
649
649
|
Opus48: "claude-opus-4-8",
|
|
650
650
|
Sonnet46: "claude-sonnet-4-6",
|
|
651
|
+
Sonnet5: "claude-sonnet-5",
|
|
651
652
|
Fable5: "claude-fable-5"
|
|
652
653
|
};
|
|
653
654
|
var BasetenModel = {
|
|
@@ -658,6 +659,20 @@ var MODEL_PROVIDERS_SET = /* @__PURE__ */ new Set([
|
|
|
658
659
|
"anthropic",
|
|
659
660
|
"baseten"
|
|
660
661
|
]);
|
|
662
|
+
var BACKEND_DESKTOP_IMAGE_FEEDBACK_CONFIGS = {
|
|
663
|
+
[CODEX_AGENT_RUNTIME_BACKEND]: {
|
|
664
|
+
backend: CODEX_AGENT_RUNTIME_BACKEND,
|
|
665
|
+
fixture: "known_image_fixture",
|
|
666
|
+
deliveryPath: "synthetic_image_context",
|
|
667
|
+
verifiedAt: "2026-07-07"
|
|
668
|
+
},
|
|
669
|
+
[CLAUDE_CODE_AGENT_RUNTIME_BACKEND]: {
|
|
670
|
+
backend: CLAUDE_CODE_AGENT_RUNTIME_BACKEND,
|
|
671
|
+
fixture: "known_image_fixture",
|
|
672
|
+
deliveryPath: "native_mcp_tool_result_image",
|
|
673
|
+
verifiedAt: "2026-07-07"
|
|
674
|
+
}
|
|
675
|
+
};
|
|
661
676
|
var MODEL_REGISTRY = [
|
|
662
677
|
{
|
|
663
678
|
id: OpenAIModel.GPT54,
|
|
@@ -864,6 +879,21 @@ var MODEL_REGISTRY = [
|
|
|
864
879
|
pricing: { inputPerMillion: 3, outputPerMillion: 15, cacheReadPerMillion: 0.3, cacheWritePerMillion: 3.75 },
|
|
865
880
|
sessionStart: { eligible: true }
|
|
866
881
|
},
|
|
882
|
+
{
|
|
883
|
+
id: AnthropicModel.Sonnet5,
|
|
884
|
+
name: "Claude Sonnet 5",
|
|
885
|
+
provider: "anthropic",
|
|
886
|
+
backends: [CLAUDE_CODE_AGENT_RUNTIME_BACKEND],
|
|
887
|
+
contextWindow: 1e6,
|
|
888
|
+
// Verified 2026-07-12 against Anthropic's Sonnet 5 launch documentation:
|
|
889
|
+
// adaptive thinking supports low/medium/high/xhigh/max; "none" omits the
|
|
890
|
+
// SDK effort option and lets Claude use its adaptive default.
|
|
891
|
+
reasoning: { efforts: ["none", "low", "medium", "high", "xhigh", "max"], default: "high" },
|
|
892
|
+
// Bridge cost-estimate only; authoritative Anthropic Messages pricing lives
|
|
893
|
+
// in apps/control-plane-worker/src/anthropic/cost.ts.
|
|
894
|
+
pricing: { inputPerMillion: 3, outputPerMillion: 15, cacheReadPerMillion: 0.3, cacheWritePerMillion: 3.75 },
|
|
895
|
+
sessionStart: { eligible: true }
|
|
896
|
+
},
|
|
867
897
|
{
|
|
868
898
|
id: AnthropicModel.Fable5,
|
|
869
899
|
name: "Claude Fable 5",
|
|
@@ -892,6 +922,12 @@ var MODEL_REGISTRY = [
|
|
|
892
922
|
// context/output, OpenAI SDK compatible, MIT license, tool calling
|
|
893
923
|
// supported for all Model APIs.
|
|
894
924
|
providerModelId: "moonshotai/Kimi-K2.7-Code",
|
|
925
|
+
desktopImageFeedback: {
|
|
926
|
+
backend: OPENCODE_AGENT_RUNTIME_BACKEND,
|
|
927
|
+
fixture: "known_image_fixture",
|
|
928
|
+
deliveryPath: "native_mcp_tool_result_image",
|
|
929
|
+
verifiedAt: "2026-07-07"
|
|
930
|
+
},
|
|
895
931
|
pricing: { inputPerMillion: 0.95, outputPerMillion: 4, cacheReadPerMillion: 0.16 },
|
|
896
932
|
sessionStart: { eligible: true, isDefault: true }
|
|
897
933
|
}
|