Google 聊天机器人在太空中提及用户

发布于 2025-01-12 20:41:41 字数 584 浏览 1 评论 0原文

我有一个聊天机器人,我试图让机器人提及空间中的用户。例如,我们有:

@googlechatBot 你好

用户说“@googlechatBot 你好”

但我希望您在答案中提及该用户。类似的东西

@googlechatBot 你好

@User 说“@googlechatBot 你好”

我使用的代码来自文档中找到的模板。

function onMessage(event) {
  var name = "";

  if (event.space.type == "DM") {
    name = "You";
  } else {
    name = event.user.displayName;
  }
  var message = name + " said \"" + event.message.text + "\"";

  return { "text": message };
}

I have a chatbot and I am trying to make the bot mention a user in a space. For example, we have:

@googlechatBot Hello

User said "@googlechatBot Hello"

But I would like you to mention the user in the answer. Something like that

@googlechatBot Hello

@User said "@googlechatBot Hello"

The code I use is from the template found in the documentation.

function onMessage(event) {
  var name = "";

  if (event.space.type == "DM") {
    name = "You";
  } else {
    name = event.user.displayName;
  }
  var message = name + " said \"" + event.message.text + "\"";

  return { "text": message };
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

街道布景 2025-01-19 20:41:41

你尝试过这种方法吗?

{
    "text": "Hey <users/123456789012345678901>! Thank you for using _Pizza bot!_"
}

如此处所述 https://developers.google .com/chat/api/guides/message-formats/basic?hl=en#messages_that_mention_specific_users

Did you tried this approach?

{
    "text": "Hey <users/123456789012345678901>! Thank you for using _Pizza bot!_"
}

As described here https://developers.google.com/chat/api/guides/message-formats/basic?hl=en#messages_that_mention_specific_users

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文