fix(agents): restore current guard checks (#86934)

This commit is contained in:
Vincent Koc
2026-05-26 20:59:03 +01:00
committed by GitHub
parent 983b33867e
commit 9b1b6d02fd
2 changed files with 67 additions and 0 deletions

View File

@@ -932,6 +932,48 @@
"text",
"channel"
]
},
"transcripts": {
"emoji": "🧾",
"title": "Transcripts",
"actions": {
"start": {
"label": "start",
"detailKeys": [
"title",
"providerId",
"accountId",
"guildId",
"channelId",
"meetingUrl"
]
},
"stop": {
"label": "stop",
"detailKeys": [
"sessionId",
"title"
]
},
"import": {
"label": "import",
"detailKeys": [
"title",
"providerId",
"speakerLabel"
]
},
"summarize": {
"label": "summarize",
"detailKeys": [
"sessionId",
"title"
]
},
"status": {
"label": "status"
}
}
}
}
}

View File

@@ -592,5 +592,30 @@ export const TOOL_DISPLAY_CONFIG: ToolDisplayConfig = {
title: "TTS",
detailKeys: ["text", "channel"],
},
transcripts: {
emoji: "🧾",
title: "Transcripts",
actions: {
start: {
label: "start",
detailKeys: ["title", "providerId", "accountId", "guildId", "channelId", "meetingUrl"],
},
stop: {
label: "stop",
detailKeys: ["sessionId", "title"],
},
import: {
label: "import",
detailKeys: ["title", "providerId", "speakerLabel"],
},
summarize: {
label: "summarize",
detailKeys: ["sessionId", "title"],
},
status: {
label: "status",
},
},
},
},
};