makaron-cli 0.14.2 → 0.14.3
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/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/README.md +10 -1
- package/bin/makaron.mjs +9 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -98,12 +98,13 @@ npx makaron-cli chat --project auto --image photo.jpg --json -b "make it cinemat
|
|
|
98
98
|
npx makaron-cli chat --project auto --image img1.jpg --image img2.jpg --json -b "combine these"
|
|
99
99
|
```
|
|
100
100
|
|
|
101
|
-
`chat` routes image and video models automatically, but you may select the Agent LLM with `--agent-model`. Accepted values are `auto`, the base model IDs (`gpt-5.6-terra`, `gpt-5.6-sol`, `gpt-5.6-luna`, `grok-4.6`, `deepseek-v4-pro`), and the personal-plan routes (`gpt-5.6-terra-codex-subscription`, `gpt-5.6-sol-codex-subscription`, `gpt-5.6-luna-codex-subscription`). For the configured owner, `auto` resolves to GPT-5.6 Terra through the personal Codex plan. Base GPT-5.6 IDs select Azure API; the suffixed IDs select the personal plan explicitly. This flag changes only the reasoning/tool-calling Agent LLM.
|
|
101
|
+
`chat` routes image and video models automatically, but you may select the Agent LLM with `--agent-model`. Accepted values are `auto`, the base model IDs (`gpt-5.6-terra`, `gpt-5.6-sol`, `gpt-5.6-luna`, `grok-4.6`, `deepseek-v4-pro`), and the personal-plan routes (`gpt-5.6-terra-codex-subscription`, `gpt-5.6-sol-codex-subscription`, `gpt-5.6-luna-codex-subscription`, `grok-4.6-grok-subscription`). For the configured owner, `auto` resolves to GPT-5.6 Terra through the personal Codex plan. Base GPT-5.6 IDs select Azure API and base `grok-4.6` selects OpenRouter API; the suffixed IDs select the corresponding personal plan explicitly. This flag changes only the reasoning/tool-calling Agent LLM.
|
|
102
102
|
|
|
103
103
|
```bash
|
|
104
104
|
# Explicit lower-cost Agent LLM for a controlled comparison
|
|
105
105
|
npx makaron-cli chat --project auto --agent-model deepseek-v4-pro --json -b "make a 20s badminton video"
|
|
106
106
|
npx makaron-cli chat --project auto --agent-model gpt-5.6-sol-codex-subscription --json -b "reply with the active model"
|
|
107
|
+
npx makaron-cli chat --project auto --agent-model grok-4.6-grok-subscription --json -b "reply with the active model"
|
|
107
108
|
```
|
|
108
109
|
|
|
109
110
|
Returns immediately:
|
|
@@ -259,6 +260,14 @@ REMOTION_EXPORT_INLINE_AFTER=false npm run worker:remotion-export
|
|
|
259
260
|
|
|
260
261
|
Keeping this worker warm avoids paying sandbox cold-start cost on every CLI or service call.
|
|
261
262
|
|
|
263
|
+
Lambda exports are admitted by a shared capacity-weighted queue. The default
|
|
264
|
+
`REMOTION_EXPORT_LAMBDA_CAPACITY=330` preserves the current per-video
|
|
265
|
+
`REMOTION_LAMBDA_FRAMES_PER_LAMBDA=20` chunking while leaving headroom under the
|
|
266
|
+
account concurrency quota. A 30-second 30fps video is estimated as 45 renderer
|
|
267
|
+
Lambdas plus one control slot, so seven such videos can render concurrently and
|
|
268
|
+
the rest remain queued. `REMOTION_EXPORT_CRON_LANES` controls how many queue
|
|
269
|
+
lanes the one-minute rescue cron keeps warm; it does not raise the capacity cap.
|
|
270
|
+
|
|
262
271
|
### With video input (MP4/MOV/WebM)
|
|
263
272
|
|
|
264
273
|
```bash
|
package/bin/makaron.mjs
CHANGED
|
@@ -37,6 +37,7 @@ const CHAT_AGENT_MODELS = [
|
|
|
37
37
|
'gpt-5.6-sol-codex-subscription',
|
|
38
38
|
'gpt-5.6-luna-codex-subscription',
|
|
39
39
|
'grok-4.6',
|
|
40
|
+
'grok-4.6-grok-subscription',
|
|
40
41
|
'deepseek-v4-pro',
|
|
41
42
|
];
|
|
42
43
|
|
|
@@ -462,7 +463,8 @@ Options:
|
|
|
462
463
|
--skill <id|label|name> Use an installed skill or auto-install a matched marketplace skill.
|
|
463
464
|
--agent-model <id> Agent LLM only: auto, gpt-5.6-terra, gpt-5.6-sol,
|
|
464
465
|
gpt-5.6-luna, grok-4.6, deepseek-v4-pro, or a
|
|
465
|
-
gpt-5.6-*-codex-subscription
|
|
466
|
+
gpt-5.6-*-codex-subscription or
|
|
467
|
+
grok-4.6-grok-subscription personal-plan route.
|
|
466
468
|
--background, -b Submit and print a runId.
|
|
467
469
|
--json Output structured JSON.
|
|
468
470
|
--stream Legacy live SSE stream.
|
|
@@ -470,7 +472,9 @@ Options:
|
|
|
470
472
|
|
|
471
473
|
Agent LLM defaults to auto (GPT-5.6 Terra; the account owner uses the personal
|
|
472
474
|
Codex plan). Base GPT-5.6 ids select Azure API; append -codex-subscription to
|
|
473
|
-
select the personal plan explicitly.
|
|
475
|
+
select the personal plan explicitly. Base grok-4.6 selects OpenRouter API;
|
|
476
|
+
grok-4.6-grok-subscription selects the personal SuperGrok plan. Image/video
|
|
477
|
+
model routing stays automatic in chat.
|
|
474
478
|
|
|
475
479
|
What you can ask:
|
|
476
480
|
Image edit
|
|
@@ -505,6 +509,9 @@ What you can ask:
|
|
|
505
509
|
Force the personal Codex plan
|
|
506
510
|
makaron chat --project auto --agent-model gpt-5.6-sol-codex-subscription -b --json "reply with the active model"
|
|
507
511
|
|
|
512
|
+
Force the personal SuperGrok plan
|
|
513
|
+
makaron chat --project auto --agent-model grok-4.6-grok-subscription -b --json "reply with the active model"
|
|
514
|
+
|
|
508
515
|
Music
|
|
509
516
|
makaron chat --project <id> "add calm piano background music"
|
|
510
517
|
|