Add files via upload

This commit is contained in:
公明
2026-03-27 22:41:23 +08:00
committed by GitHub
parent 0d262cb30b
commit 6c71c090b5
13 changed files with 57 additions and 3 deletions
@@ -81,13 +81,21 @@ public class BurpExtender implements IBurpExtender, IContextMenuFactory {
tab.setRunStatus(runId, "error");
break;
case "thinking_stream_start":
if (tab.isShowDebugEvents()) {
tab.resetThinkingStream(runId);
}
break;
case "thinking_stream_delta":
case "tool_call":
case "tool_result":
case "tool_result_delta":
// debug; hide by default
if (tab.isShowDebugEvents() && message != null && !message.isEmpty()) {
tab.appendProgressToRun(runId, "\n[" + type + "] " + message + "\n");
if ("thinking_stream_delta".equals(type)) {
tab.appendThinkingDelta(runId, message);
} else {
tab.appendProgressToRun(runId, "\n[" + type + "] " + message + "\n");
}
}
break;
case "conversation":