如何从dialogflow API访问protobuf响应中的信息

发布于 2025-01-09 18:20:38 字数 1252 浏览 1 评论 0原文

我在访问访问 googleDialogflow api 后收到的 protobuf 对象的值时遇到严重问题

(... create google cloud session object ...)

text_input = dialogflow.types.TextInput(text=text, language_code=language_code)
query_input = dialogflow.types.QueryInput(text=text_input)
response = session_client.detect_intent(request={"session": session, "query_input": query_input})

from google.protobuf import json_format
response_json = json_format.MessageToDict(response)

错误是:

AttributeError: 'MapComposite' object has no attribute 'DESCRIPTOR'

基本上我有两个问题

: )我无法将 protobuf 转换为 json (在这里我可以轻松地看到如何访问我正在寻找的信息)

b)我无法理解 protobof 数据结构。有字典吗?

a) 或 b) 中的任何帮助者均表示赞赏。

顺便说一句:我正在寻找一种访问 API 响应中的 response.parameters 的方法。


为 Scott 编辑:

response.parameters 是一个对象:

参数对象的描述如下: https://cloud.google.com/dialogflow/ es/docs/reference/rest/v2/DetectIntentResponse#QueryResult

这对您有意义吗?因为我不明白如何访问这个对象中的值。

I am having serious trouble accessing the values from a protobuf object I receive after accessing the google dialogflow api

(... create google cloud session object ...)

text_input = dialogflow.types.TextInput(text=text, language_code=language_code)
query_input = dialogflow.types.QueryInput(text=text_input)
response = session_client.detect_intent(request={"session": session, "query_input": query_input})

from google.protobuf import json_format
response_json = json_format.MessageToDict(response)

The error is:

AttributeError: 'MapComposite' object has no attribute 'DESCRIPTOR'

Basically I have two issues:

a) I am not able to convert the protobuf to json (here I am easily able to see how to access the infos I am looking for)

b) I am not able to understand the protobof data structure. Is there a dictionary?

Any helper in a) or b) are appreciated.

btw: I am looking for a way to access response.parameters in the API response.


Edit for Scott:

response.parameters is an object:
<proto.marshal.collections.maps.MapComposite object at 0x7fe7323f7da0>

The parameters object is described here:
https://cloud.google.com/dialogflow/es/docs/reference/rest/v2/DetectIntentResponse#QueryResult

Does it make sense to you? Because I don't understand how to access the values in this object.

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

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

发布评论

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

评论(1

在梵高的星空下 2025-01-16 18:20:39

您可以使用 MessageToDict 方法(如下所示)将 protobuf 序列化为字典,并使用 response._pb 而不是 response

from google.protobuf.json_format import MessageToDict
response_json = MessageToDict(response._pb)

现在,您现在可以在字典中导航到您想要访问的 parameters ,如下所示,因为 parameters 位于 queryResult 内部/之下(基于关于结构)。

print(response_json["queryResult"]["parameters"])

You may use MessageToDict approach, as shown below, to serialize protobuf to a dictionary and use response._pb instead of response.

from google.protobuf.json_format import MessageToDict
response_json = MessageToDict(response._pb)

Now, you can now navigate through the dictionary for the parameters that you want to access as shown below since parameters is inside/under queryResult (based on the structure).

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