gpt4 book ai didi

dialogflow-es - 如何使用Dialogflow CX API传递参数给webhook?好像detectIntent() set session queryParams 不起作用

转载 作者:行者123 更新时间:2023-12-01 23:30:36 28 4
gpt4 key购买 nike

根据 google dialogflow cx 文档:https://cloud.google.com/dialogflow/cx/docs/concept/parameter https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/QueryParameters

click to show the reference我知道我们可以使用 api 来设置 session 参数。所以我想通过API方式将参数传递给webhook。

第一步:前端,使用detectintent()接口(interface),填写queryParams项。
第二步:Google dialogflow cx server 将参数设置为 session 参数。
第三步:Webhook接收到google端的函数调用。我们可以从http请求中找到所有的session参数。

就我而言,我只能收到在DialogFlow Agent中设置的变量,但我没有收到任何通过detectintent() API设置的参数。我想我一定做错了什么,谁能告诉我怎么做?谢谢。

我的代码如下(Nodejs 代码):

  const sessionPath = client.projectLocationAgentSessionPath(
projectId,
location,
agentId,
sessionId
);

var mapParameters = new Map([['Michael', 95], ['Bob', 75], ['Tracy', 85]]);

const request = {
session: sessionPath,

"queryInput": {

"text": {
"text": query,
},
languageCode,
},

'queryParams': {
'timeZone': 'America/Los_Angeles',
'parameters': {
"fields":mapParameters
}
},

};
const [response] = await client.detectIntent(request);

最佳答案

问题已经解决。它需要被序列化/转换。

因此对于文档中提到的参数类型,需要将其作为“结构”发送到DialogFlow。

根据您的协议(protocol)或客户端库语言,这是一个映射、关联数组、符号表、字典或由 (MapKey, MapValue) 对集合组成的 JSON 对象:

正确的结构如下所示:

{
session: 'projects/xxxxx...........',
queryInput: {
text: { text: 'hello world!' },
languageCode: 'en'
},
queryParams: {
timeZone: 'America/Los_Angeles',
parameters: {
fields: {
ID: { kind: 'numberValue', numberValue: 5 },
Email: { kind: 'stringValue', stringValue: 'xxxxx@gmail.com' },
Phone: { kind: 'stringValue', stringValue: '7789511xxx' },
Domain: { kind: 'stringValue', stringValue: 'xxxxxx.com' }
}
}
}
}

关于dialogflow-es - 如何使用Dialogflow CX API传递参数给webhook?好像detectIntent() set session queryParams 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66326029/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com