mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 20:00:42 +00:00
fix: resolve small triage issues
This commit is contained in:
@@ -29,4 +29,8 @@ export const msTeamsChannelConfigUiHints = {
|
||||
label: "MS Teams Progress Tool Lines",
|
||||
help: "Show compact tool/progress lines in progress mode (default: true). Set false to keep only the title until final delivery.",
|
||||
},
|
||||
"streaming.progress.commandText": {
|
||||
label: "MS Teams Progress Command Text",
|
||||
help: 'Command/exec detail in progress lines: "raw" preserves released behavior; "status" shows only the tool label.',
|
||||
},
|
||||
} satisfies Record<string, ChannelConfigUiHint>;
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import {
|
||||
formatChannelProgressDraftLine,
|
||||
formatChannelProgressDraftLineForEntry,
|
||||
resolveChannelPreviewStreamMode,
|
||||
resolveChannelStreamingBlockEnabled,
|
||||
} from "openclaw/plugin-sdk/channel-streaming";
|
||||
@@ -384,7 +385,8 @@ export function createMSTeamsReplyDispatcher(params: {
|
||||
detailMode?: "explain" | "raw";
|
||||
}) => {
|
||||
await streamController.pushProgressLine(
|
||||
formatChannelProgressDraftLine(
|
||||
formatChannelProgressDraftLineForEntry(
|
||||
msteamsCfg,
|
||||
{
|
||||
event: "tool",
|
||||
name: payload.name,
|
||||
@@ -407,7 +409,7 @@ export function createMSTeamsReplyDispatcher(params: {
|
||||
status?: string;
|
||||
}) => {
|
||||
await streamController.pushProgressLine(
|
||||
formatChannelProgressDraftLine({
|
||||
formatChannelProgressDraftLineForEntry(msteamsCfg, {
|
||||
event: "item",
|
||||
itemKind: payload.kind,
|
||||
title: payload.title,
|
||||
|
||||
Reference in New Issue
Block a user