style: format linted files

This commit is contained in:
Peter Steinberger
2026-01-03 03:10:17 +01:00
parent b8fd22bfd8
commit 632ca01fbf
3 changed files with 6 additions and 6 deletions

View File

@@ -606,9 +606,7 @@ export async function getReplyFromConfig(
agentCfg?.blockStreamingDefault === "off" ? "off" : "on";
// TODO(steipete): Default to message_end for now; figure out why text_end breaks and whether we can revert.
const resolvedBlockStreamingBreak =
agentCfg?.blockStreamingBreak === "text_end"
? "text_end"
: "message_end";
agentCfg?.blockStreamingBreak === "text_end" ? "text_end" : "message_end";
const blockStreamingEnabled = resolvedBlockStreaming === "on";
const streamedPayloadKeys = new Set<string>();
const pendingBlockTasks = new Set<Promise<void>>();