@lingjingai/scriptctl 0.49.3 → 0.49.5
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/changes/0.49.4.md +13 -0
- package/changes/0.49.5.md +13 -0
- package/dist/llm/registry.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# 0.49.4
|
|
2
|
+
|
|
3
|
+
## Added
|
|
4
|
+
- None.
|
|
5
|
+
|
|
6
|
+
## Changed
|
|
7
|
+
- Version bump to publish the Doubao (Ark) cross-provider video fallback (0.49.1–0.49.3) to deployed installs. No source changes; the running package predated the fallback, so `content_filtered` on every Gemini model failed the episode instead of retrying on Doubao.
|
|
8
|
+
|
|
9
|
+
## Fixed
|
|
10
|
+
- None.
|
|
11
|
+
|
|
12
|
+
## Breaking
|
|
13
|
+
- None.
|
package/dist/llm/registry.js
CHANGED
|
@@ -31,7 +31,7 @@ export const LLM_TASK_REGISTRY = {
|
|
|
31
31
|
// Fires rarely (only when the synopsis exceeds budget); output is a short
|
|
32
32
|
// paragraph, so a modest budget suffices (headroom for a reasoning model).
|
|
33
33
|
"ingest.arc-summary": spec("ingest.arc-summary", "text", 4096),
|
|
34
|
-
"ingest.text-normalize": spec("ingest.text-normalize", "text",
|
|
34
|
+
"ingest.text-normalize": spec("ingest.text-normalize", "text", 32000),
|
|
35
35
|
// Serial per-WINDOW asset/state annotation: model reads the running context + a
|
|
36
36
|
// token-bounded window of 1+ episodes (~10k body tokens), returns a structured
|
|
37
37
|
// Delta (SERIAL_DELTA_SCHEMA) covering all their scenes via native tool-calling —
|