@lightcone-ai/daemon 0.15.25 → 0.15.26
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.
|
@@ -781,7 +781,7 @@ function pickSlotKeysForMode({ mode, slots }) {
|
|
|
781
781
|
return ordered.filter(key => slotHasValue(slots[key])).slice(0, 3);
|
|
782
782
|
}
|
|
783
783
|
if (mode === 'job_alert') {
|
|
784
|
-
const ordered = ['job_directions', 'locations', 'cohort'
|
|
784
|
+
const ordered = ['job_directions', 'locations', 'cohort'];
|
|
785
785
|
return ordered.filter(key => slotHasValue(slots[key])).slice(0, 1);
|
|
786
786
|
}
|
|
787
787
|
if (mode === 'info_summary') {
|
|
@@ -1013,7 +1013,7 @@ export function planVideo({
|
|
|
1013
1013
|
semantic_slot: ctaSlotKey,
|
|
1014
1014
|
focus_region: ctaAnchor?.y_range ?? null,
|
|
1015
1015
|
confidence: ctaSlot ? Number(clampNumber(ctaSlot.confidence, 0, 1, 0).toFixed(2)) : null,
|
|
1016
|
-
guidance: '
|
|
1016
|
+
guidance: '收尾自然收口(如"感兴趣去原文查看"),禁止提及任何 URL、网址、二维码或投递入口',
|
|
1017
1017
|
});
|
|
1018
1018
|
|
|
1019
1019
|
const cappedPlan = phasePlan.slice(0, 5);
|
|
@@ -1139,24 +1139,24 @@ function buildPhaseSentence({ phase, strategy, phaseIndex }) {
|
|
|
1139
1139
|
if (role === 'cta') {
|
|
1140
1140
|
if (mode === 'job_intel_broadcast') {
|
|
1141
1141
|
return ensureSentenceLength(
|
|
1142
|
-
|
|
1142
|
+
`感兴趣的同学去原文查看完整岗位要求和截止时间,对照自己情况再决定要不要投。`
|
|
1143
1143
|
);
|
|
1144
1144
|
}
|
|
1145
1145
|
|
|
1146
1146
|
if (mode === 'job_alert') {
|
|
1147
1147
|
return ensureSentenceLength(
|
|
1148
|
-
|
|
1148
|
+
`细节不完整,建议收藏原文,等正式公告发布后再核对岗位方向、城市和流程再决定。`
|
|
1149
1149
|
);
|
|
1150
1150
|
}
|
|
1151
1151
|
|
|
1152
1152
|
if (mode === 'refuse_auto_broadcast') {
|
|
1153
1153
|
return ensureSentenceLength(
|
|
1154
|
-
'
|
|
1154
|
+
'页面信息不完整,暂不播报。建议直接去官方渠道确认公司、岗位和发布时间后再做判断。'
|
|
1155
1155
|
);
|
|
1156
1156
|
}
|
|
1157
1157
|
|
|
1158
1158
|
return ensureSentenceLength(
|
|
1159
|
-
|
|
1159
|
+
'具体要求和截止时间见原文,建议直接查看官方公告,避免依赖摘要信息做投递判断。'
|
|
1160
1160
|
);
|
|
1161
1161
|
}
|
|
1162
1162
|
|
package/package.json
CHANGED
|
@@ -187,7 +187,7 @@ export async function recordUrlNarration({
|
|
|
187
187
|
viewport = DEFAULT_VIEWPORT,
|
|
188
188
|
fps = DEFAULT_FPS,
|
|
189
189
|
settle_ms = 4000,
|
|
190
|
-
page_zoom = 1.
|
|
190
|
+
page_zoom = 1.1,
|
|
191
191
|
displayPool = defaultDisplayPool,
|
|
192
192
|
ffmpegDurationBufferSec = 8,
|
|
193
193
|
startupProbeMs = 1200,
|
package/src/chat-bridge.js
CHANGED
|
@@ -1480,7 +1480,7 @@ server.tool('record_url_narration',
|
|
|
1480
1480
|
}).optional().describe('Default 1080x1920 (mobile portrait). Override only if the plan requires a different shape.'),
|
|
1481
1481
|
fps: z.number().optional().describe('Default 30. Do not change unless needed.'),
|
|
1482
1482
|
settle_ms: z.number().optional().describe('Default 4000. Settle wait after navigation before recording starts.'),
|
|
1483
|
-
page_zoom: z.number().optional().describe('Browser zoom factor applied before recording. Default 1.
|
|
1483
|
+
page_zoom: z.number().optional().describe('Browser zoom factor applied before recording. Default 1.1 (10% zoom in). Set to 1.0 to disable. Plan Y coordinates are automatically scaled by this factor.'),
|
|
1484
1484
|
},
|
|
1485
1485
|
async (args) => {
|
|
1486
1486
|
if (isBlockedCvmaxEditorVideoTool('record_url_narration')) {
|