This build was committed by a bot.

This commit is contained in:
github-actions[bot]
2025-11-21 23:03:19 +00:00
parent f58de45bd1
commit 723c162cb4
3 changed files with 6 additions and 3 deletions

View File

@@ -105,7 +105,10 @@ const buildBody = () => {
}
b.reasoning = { ...SUNE2.reasoning_effort && SUNE2.reasoning_effort !== "default" ? { effort: SUNE2.reasoning_effort } : {}, exclude: !SUNE2.include_thoughts };
if (SUNE2.verbosity) b.verbosity = SUNE2.verbosity;
if (SUNE2.img_output && !USER2.donor) b.modalities = ["text", "image"];
if (SUNE2.img_output && !USER2.donor) {
b.modalities = ["text", "image"];
b.image_config = { aspect_ratio: "1:1" };
}
return b;
};
async function streamLocal(body, onDelta, signal) {