fix: limit reroll re-extract to single latest assistant batch

This commit is contained in:
Youzini-afk
2026-03-29 19:13:46 +08:00
parent ab37e2111c
commit fc2e9abc72
3 changed files with 10 additions and 5 deletions

View File

@@ -5058,7 +5058,7 @@ async function onFetchEmbeddingModels(mode = null) {
);
}
async function onManualExtract() {
async function onManualExtract(options = {}) {
return await onManualExtractController({
beginStageAbortController,
clampInt,
@@ -5086,7 +5086,7 @@ async function onManualExtract() {
},
setLastExtractionStatus,
toastr,
});
}, options);
}
async function onReroll({ fromFloor } = {}) {