@tryarcanist/cli 0.1.107 → 0.1.109
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 +0 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -424,7 +424,6 @@ var DEFAULT_SESSION_START_MODEL_ID_BY_BACKEND = {
|
|
|
424
424
|
[CODEX_AGENT_RUNTIME_BACKEND]: OpenAIModel.GPT54,
|
|
425
425
|
[CLAUDE_CODE_AGENT_RUNTIME_BACKEND]: AnthropicModel.Opus48
|
|
426
426
|
};
|
|
427
|
-
var SESSION_START_MODEL_IDS = SESSION_START_MODEL_IDS_BY_BACKEND[CODEX_AGENT_RUNTIME_BACKEND];
|
|
428
427
|
var DEFAULT_SESSION_START_MODEL_ID = DEFAULT_SESSION_START_MODEL_ID_BY_BACKEND[CODEX_AGENT_RUNTIME_BACKEND];
|
|
429
428
|
var MODEL_REGISTRY = [
|
|
430
429
|
{
|
|
@@ -521,7 +520,6 @@ var VALID_SESSION_START_MODEL_IDS_BY_BACKEND = {
|
|
|
521
520
|
SESSION_START_MODEL_IDS_BY_BACKEND[CLAUDE_CODE_AGENT_RUNTIME_BACKEND]
|
|
522
521
|
)
|
|
523
522
|
};
|
|
524
|
-
var VALID_SESSION_START_MODEL_IDS = VALID_SESSION_START_MODEL_IDS_BY_BACKEND[CODEX_AGENT_RUNTIME_BACKEND];
|
|
525
523
|
var MODEL_CONTEXT_WINDOWS = {
|
|
526
524
|
...Object.fromEntries(
|
|
527
525
|
MODEL_REGISTRY.flatMap((model) => model.contextWindow === void 0 ? [] : [[model.id, model.contextWindow]])
|
|
@@ -533,9 +531,6 @@ var MODEL_PROVIDERS = {
|
|
|
533
531
|
var MODEL_REASONING_CONFIG = Object.fromEntries(
|
|
534
532
|
MODEL_REGISTRY.flatMap((model) => model.reasoning ? [[model.id, model.reasoning]] : [])
|
|
535
533
|
);
|
|
536
|
-
var MODELS_WITHOUT_REASONING = /* @__PURE__ */ new Set([
|
|
537
|
-
...MODEL_REGISTRY.filter((model) => !model.reasoning).map((model) => model.id)
|
|
538
|
-
]);
|
|
539
534
|
var MODEL_DEFINITIONS_BY_ID = Object.fromEntries(MODEL_REGISTRY.map((model) => [model.id, model]));
|
|
540
535
|
function splitModelIdentifier(value) {
|
|
541
536
|
let hasSeparator = false;
|