fix: drop redundant Full conversation unchanged from image context label

This commit is contained in:
Daniel 2026-09-08 15:52:37 +02:00
parent c237826ef6
commit 3464f2d456

View file

@ -68,7 +68,7 @@ export async function hydrateImage(img, src, ticket = captureImageOwner()) {
}
export function imageContextLabel(data) {
const c = data.context;
return c ? 'Image context: ' + c.includedTurns + '/' + c.totalTurns + ' preceding turns included; ' + c.used + '/' + c.limit + ' UTF-16 code units. ' + (c.totalTurns > c.includedTurns ? 'Older turns omitted from image input only. ' : '') + 'Full conversation unchanged.' : 'Image context metadata unavailable for this older job.';
return c ? 'Image context: ' + c.includedTurns + '/' + c.totalTurns + ' preceding turns included; ' + c.used + '/' + c.limit + ' UTF-16 code units. ' + (c.totalTurns > c.includedTurns ? 'Older turns omitted from image input only. ' : '') : 'Image context metadata unavailable for this older job.';
}
export function renderImageJobs(container, jobs, workflow, onDone) {
const ticket = captureImageOwner();