AWS Lex 是否支持表情符号对话和意图?
Does AWS Lex support emoji conversations & intent ?
我已经尝试构建一个针对 :thumbsup: 以及 unicode 表示形式 U+1F44D
的意图
如何围绕表情符号建立意图?
很遗憾,:thumbsup:
和 U+1F44D
将无效。
An utterance can consist only of Unicode characters, spaces, and valid
punctuation marks. Valid punctuation marks are: periods for
abbreviations, underscores, apostrophes, and hyphens.
在将表情符号发送给 Lex 之前,您必须对其进行处理。就像如果您获得 :thumbsup:
值然后将 thumbsup
发送给 Lex,它将处理该意图。
我已经尝试构建一个针对 :thumbsup: 以及 unicode 表示形式 U+1F44D
的意图如何围绕表情符号建立意图?
很遗憾,:thumbsup:
和 U+1F44D
将无效。
An utterance can consist only of Unicode characters, spaces, and valid punctuation marks. Valid punctuation marks are: periods for abbreviations, underscores, apostrophes, and hyphens.
在将表情符号发送给 Lex 之前,您必须对其进行处理。就像如果您获得 :thumbsup:
值然后将 thumbsup
发送给 Lex,它将处理该意图。