

























@@ -20,7 +20,12 @@ export type MatrixQaScenarioId =
2020| "matrix-subagent-thread-spawn"
2121| "matrix-top-level-reply-shape"
2222| "matrix-room-thread-reply-override"
23+| "matrix-room-partial-streaming-preview"
2324| "matrix-room-quiet-streaming-preview"
25+| "matrix-room-tool-progress-preview"
26+| "matrix-room-tool-progress-preview-opt-out"
27+| "matrix-room-tool-progress-error"
28+| "matrix-room-tool-progress-mention-safety"
2429| "matrix-room-block-streaming"
2530| "matrix-room-image-understanding-attachment"
2631| "matrix-room-generated-image-delivery"
@@ -317,6 +322,14 @@ export const MATRIX_QA_SCENARIOS: MatrixQaScenarioDefinition[] = [
317322threadReplies: "always",
318323},
319324},
325+{
326+id: "matrix-room-partial-streaming-preview",
327+timeoutMs: 45_000,
328+title: "Matrix partial streaming emits text previews before finalizing",
329+configOverrides: {
330+streaming: "partial",
331+},
332+},
320333{
321334id: "matrix-room-quiet-streaming-preview",
322335timeoutMs: 45_000,
@@ -325,6 +338,47 @@ export const MATRIX_QA_SCENARIOS: MatrixQaScenarioDefinition[] = [
325338streaming: "quiet",
326339},
327340},
341+{
342+id: "matrix-room-tool-progress-preview",
343+timeoutMs: 60_000,
344+title: "Matrix streaming folds tool progress into the preview message",
345+configOverrides: {
346+streaming: "quiet",
347+toolProfile: "coding",
348+},
349+},
350+{
351+id: "matrix-room-tool-progress-preview-opt-out",
352+timeoutMs: 60_000,
353+title: "Matrix streaming can opt out of preview tool progress",
354+configOverrides: {
355+streaming: {
356+mode: "quiet",
357+preview: {
358+toolProgress: false,
359+},
360+},
361+toolProfile: "coding",
362+},
363+},
364+{
365+id: "matrix-room-tool-progress-error",
366+timeoutMs: 60_000,
367+title: "Matrix streaming finalizes previews after tool errors",
368+configOverrides: {
369+streaming: "quiet",
370+toolProfile: "coding",
371+},
372+},
373+{
374+id: "matrix-room-tool-progress-mention-safety",
375+timeoutMs: 60_000,
376+title: "Matrix streaming keeps tool-progress mentions inert",
377+configOverrides: {
378+streaming: "partial",
379+toolProfile: "coding",
380+},
381+},
328382{
329383id: "matrix-room-block-streaming",
330384timeoutMs: 75_000,
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。