如何在 Teams botbuilder 中标记 AI 内容?

问题描述 投票:0回答:1

根据 Microsoft 团队的商店验证指南,具有 AI 生成内容的应用程序需要标记哪些消息是 AI 生成的。

根据此处可以看到的图像,似乎有一种方法可以在 Teams 的 UI 中标记此问题。 “人工智能生成的内容可能不正确”

使用 botbuilder-python,有人知道如何标记它吗?

python botframework microsoft-teams
1个回答
0
投票

我设法实现了这一点,但使用了适用于 JavaScript/TypeScript 的 Bot Framework SDK。这是我发送的用于标记 AI 生成内容的卡片:

{
    type: "message",
    text: "Hello world",
    entities: [
        {
            type: "https://schema.org/Message",
            "@type": "Message",
            "@context": "https://schema.org",
            additionalType: ["AIGeneratedContent"] // AI label
        }
    ]
}

对于Python,方法应该类似。您需要在消息负载中包含相同的元数据(具有 AIGeneeratedContent 标签的实体)。不幸的是,我自己还没有在 Python 中实现这个,但这个概念应该很容易翻译

© www.soinside.com 2019 - 2024. All rights reserved.