begin_offset 设置为 -1 Google 自然语言 API (entity_extraction)

begin_offset is set to -1 Google NATURAL LANGUAGE API (entity_extraction)

Google 云云自然语言 API (entity_extraction) returns -1 for begin_offset(在 nodejs 和 python 上) .我是否缺少任何参数

from google.cloud import language
from google.cloud.language import enums
from google.cloud.language import types

client = language.LanguageServiceClient()

text = u'Dr. James went to NYU yesterday'
document = types.Document(
    content=text,
    type=enums.Document.Type.PLAIN_TEXT)

results = client.analyze_entities(document=document).entities
print(results[0].mentions[0].text.begin_offset)

传入一个编码类型。这是一个例子:https://github.com/GoogleCloudPlatform/python-docs-samples/blob/c359be8e635806f4c4986e6c643c67bac5e857da/language/cloud-client/v1/snippets.py#L208