fix: keep streamed output delivery non-blocking (#186)

This commit is contained in:
Eyejoker
2026-05-29 19:42:21 +09:00
committed by GitHub
parent 0bbb3fe14f
commit b2cfe385cf
5 changed files with 162 additions and 36 deletions

View File

@@ -53,10 +53,3 @@ export function hasAgentOutputPayload(output: {
}
return output.result !== null && output.result !== undefined;
}
export function isSilentAgentOutput(_output: {
output?: StructuredAgentOutput;
result?: string | object | null;
}): boolean {
return false;
}