View source: R/lexruntimev2_operations.R
lexruntimev2_recognize_utterance | R Documentation |
Sends user input to Amazon Lex V2. You can send text or speech. Clients use this API to send text and audio requests to Amazon Lex V2 at runtime. Amazon Lex V2 interprets the user input using the machine learning model built for the bot.
See https://www.paws-r-sdk.com/docs/lexruntimev2_recognize_utterance/ for full documentation.
lexruntimev2_recognize_utterance(
botId,
botAliasId,
localeId,
sessionId,
sessionState = NULL,
requestAttributes = NULL,
requestContentType,
responseContentType = NULL,
inputStream = NULL
)
botId |
[required] The identifier of the bot that should receive the request. |
botAliasId |
[required] The alias identifier in use for the bot that should receive the request. |
localeId |
[required] The locale where the session is in use. |
sessionId |
[required] The identifier of the session in use. |
sessionState |
Sets the state of the session with the user. You can use this to set the current intent, attributes, context, and dialog action. Use the dialog action to determine the next step that Amazon Lex V2 should use in the conversation with the user. The |
requestAttributes |
Request-specific information passed between the client application and Amazon Lex V2 The namespace The |
requestContentType |
[required] Indicates the format for audio input or that the content is text. The header must start with one of the following prefixes:
|
responseContentType |
The message that Amazon Lex V2 returns in the response can be either
text or speech based on the
|
inputStream |
User input in PCM or Opus audio format or text format as described in
the |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.