feat: expose codex stream delta events

This commit is contained in:
AI Bot
2026-06-03 12:37:23 +08:00
parent b31238b6e2
commit bc9a586e81
12 changed files with 112 additions and 7 deletions

View File

@@ -185,6 +185,18 @@ function buildSupportMatrix({ helpText, methods }) {
methodSet.has("thread/archived") ||
methodSet.has("thread/unarchived") ||
methodSet.has("thread/name/updated"),
agentMessageDelta: methodSet.has("item/agentMessage/delta"),
planDelta: methodSet.has("item/plan/delta"),
reasoningDeltas:
methodSet.has("item/reasoning/summaryPartAdded") ||
methodSet.has("item/reasoning/summaryTextDelta") ||
methodSet.has("item/reasoning/textDelta"),
mcpToolProgress: methodSet.has("item/mcpToolCall/progress"),
commandOutputDeltas:
methodSet.has("command/exec/outputDelta") ||
methodSet.has("item/commandExecution/outputDelta"),
terminalInteraction: methodSet.has("item/commandExecution/terminalInteraction"),
fileChangeOutputDelta: methodSet.has("item/fileChange/outputDelta"),
};
}