@tryarcanist/cli 0.1.283 → 0.1.284
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 +45 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8593,6 +8593,10 @@ var OpenAIModel = {
|
|
|
8593
8593
|
GPT52ChatLatest: "gpt-5.2-chat-latest",
|
|
8594
8594
|
GPT52Codex: "gpt-5.2-codex"
|
|
8595
8595
|
};
|
|
8596
|
+
var DeepSeekModel = {
|
|
8597
|
+
V4Flash: "deepseek-v4-flash",
|
|
8598
|
+
V4Pro: "deepseek-v4-pro"
|
|
8599
|
+
};
|
|
8596
8600
|
var MODEL_PROVIDERS_SET = /* @__PURE__ */ new Set(["openai", "anthropic"]);
|
|
8597
8601
|
var BACKEND_DESKTOP_IMAGE_FEEDBACK_CONFIGS = {
|
|
8598
8602
|
[CODEX_AGENT_RUNTIME_BACKEND]: {
|
|
@@ -8800,6 +8804,47 @@ var MODEL_REGISTRY = [
|
|
|
8800
8804
|
sessionStart: { eligible: true },
|
|
8801
8805
|
visibility: "internal_probe"
|
|
8802
8806
|
},
|
|
8807
|
+
{
|
|
8808
|
+
// Served by Fireworks through Ramp Router, never by OpenAI. Pricing is Fireworks' published
|
|
8809
|
+
// per-million rate, confirmed against billed dashboard rows to the cent on 2026-08-12 --
|
|
8810
|
+
// Ramp's own `GET /v1/models` catalog misprices the OpenAI family and is not a source here.
|
|
8811
|
+
id: DeepSeekModel.V4Flash,
|
|
8812
|
+
name: "DeepSeek V4 Flash",
|
|
8813
|
+
provider: "openai",
|
|
8814
|
+
backends: [CODEX_AGENT_RUNTIME_BACKEND],
|
|
8815
|
+
capabilities: { codexToolSearch: true },
|
|
8816
|
+
contextWindow: 1048576,
|
|
8817
|
+
reasoning: { efforts: ["high"], default: "high" },
|
|
8818
|
+
pricing: { inputPerMillion: 0.14, outputPerMillion: 0.28, cacheReadPerMillion: 0.028 },
|
|
8819
|
+
// Startable but hidden, the same two-axis shape gpt-5.3-codex-spark uses. `sessionStart` is
|
|
8820
|
+
// what lets an explicitly authorized caller actually start a session on this model --
|
|
8821
|
+
// createSessionState resolves through extractSessionStartModelIdForBackend, which reads this
|
|
8822
|
+
// block. `visibility` is what keeps it out of every customer surface: the public provider
|
|
8823
|
+
// groups filter on it, and extractSessionStartModelIdAnyBackend refuses a non-subscription
|
|
8824
|
+
// probe outright, so no stored default or automatic route can reach it.
|
|
8825
|
+
sessionStart: { eligible: true },
|
|
8826
|
+
visibility: "internal_probe"
|
|
8827
|
+
},
|
|
8828
|
+
{
|
|
8829
|
+
// The second candidate on the Ramp fallback list, so a Flash capacity 429 does not strand a
|
|
8830
|
+
// review. Roughly 12x Flash's rate, which is why the budget reservation prices against Pro.
|
|
8831
|
+
id: DeepSeekModel.V4Pro,
|
|
8832
|
+
name: "DeepSeek V4 Pro",
|
|
8833
|
+
provider: "openai",
|
|
8834
|
+
backends: [CODEX_AGENT_RUNTIME_BACKEND],
|
|
8835
|
+
capabilities: { codexToolSearch: true },
|
|
8836
|
+
contextWindow: 1048576,
|
|
8837
|
+
reasoning: { efforts: ["high"], default: "high" },
|
|
8838
|
+
pricing: { inputPerMillion: 1.74, outputPerMillion: 3.48, cacheReadPerMillion: 0.348 },
|
|
8839
|
+
// Startable but hidden, the same two-axis shape gpt-5.3-codex-spark uses. `sessionStart` is
|
|
8840
|
+
// what lets an explicitly authorized caller actually start a session on this model --
|
|
8841
|
+
// createSessionState resolves through extractSessionStartModelIdForBackend, which reads this
|
|
8842
|
+
// block. `visibility` is what keeps it out of every customer surface: the public provider
|
|
8843
|
+
// groups filter on it, and extractSessionStartModelIdAnyBackend refuses a non-subscription
|
|
8844
|
+
// probe outright, so no stored default or automatic route can reach it.
|
|
8845
|
+
sessionStart: { eligible: true },
|
|
8846
|
+
visibility: "internal_probe"
|
|
8847
|
+
},
|
|
8803
8848
|
{
|
|
8804
8849
|
id: OpenAIModel.GPT53Codex,
|
|
8805
8850
|
name: "GPT-5.3 Codex",
|