fix: drop redundant Full conversation unchanged from image context label
This commit is contained in:
parent
c237826ef6
commit
3464f2d456
1 changed files with 1 additions and 1 deletions
|
|
@ -68,7 +68,7 @@ export async function hydrateImage(img, src, ticket = captureImageOwner()) {
|
||||||
}
|
}
|
||||||
export function imageContextLabel(data) {
|
export function imageContextLabel(data) {
|
||||||
const c = data.context;
|
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) {
|
export function renderImageJobs(container, jobs, workflow, onDone) {
|
||||||
const ticket = captureImageOwner();
|
const ticket = captureImageOwner();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue