3

我想检测谁在与我的代理进行交互。

例如,我读到 Alexa 应该能够检测到不同的用户。Google Home 广告也让我觉得它应该检测谁在说话。那我怎么看谁在说话呢?

在 slack 中似乎更容易,因为众所周知谁在写作。但是我看不到当前用户是谁。

4

3 回答 3

3

我发现了如何在 slack 中检测用户:如果你实现了那个钩子,你会得到这个示例 json:

{
    "id": "f7912345-e21c-450f-a8ca-d01e38012345",
    "timestamp": "2016-12-20T06:53:51.071Z",
    "result": {
        "source": "agent",
        "resolvedQuery": "echo hallo welt",
        "speech": "",
        "action": "",
        "actionIncomplete": false,
        "parameters": {
            "myInput": "hallo welt"
        },
        "contexts": [{
            "name": "generic",
            "parameters": {
                "slack_user_id": "U0AT12345",
                "myInput": "hallo welt",
                "slack_channel": "D3DR12345",
                "myInput.original": "hallo welt"
            },
            "lifespan": 4
        }],
        "metadata": {
            "intentId": "06212345-06a0-40fe-bbeb-9189db412345",
            "webhookUsed": "true",
            "webhookForSlotFillingUsed": "false",
            "intentName": "Response"
        },
        "fulfillment": {
            "speech": "",
            "messages": [{
                "type": 0,
                "speech": ""
            }]
        },
        "score": 0.75
    },
    "status": {
        "code": 200,
        "errorType": "success"
    },
    "sessionId": "10612345-c681-11e6-af08-875120912345",
    "originalRequest": {
        "source": "slack_testbot",
        "data": {
            "channel": "D3DR12345",
            "match": ["echo hallo welt"],
            "text": "echo hallo welt",
            "team": "T04H12345",
            "type": "message",
            "event": "direct_message",
            "user": "U0AT12345",
            "ts": "1482216830.000005"
        }
    }
}

因此,如果出现 slack,您可以访问 result->contexts[0]->paramaters->slack_user_id。

于 2016-12-20T07:34:53.930 回答
0

Google Home(至少目前)没有办法在同一设备上处理多个用户。

于 2016-12-19T20:10:06.983 回答
0

Google Home 不断改进(甚至消除了我最近更新时遇到的开发障碍)。它现在可以被训练来识别你的声音和别人的声音。

番茄,番茄酱。Google Home 现在支持多用户

于 2017-05-05T15:06:22.910 回答