@@ -145,6 +145,10 @@ def message(self,
145145 Get response to user input.
146146
147147 Send user input to a workspace and receive a response.
148+ **Note:** For most applications, there are significant advantages to using the v2
149+ runtime API instead. These advantages include ease of deployment, automatic state
150+ management, versioning, and search capabilities. For more information, see the
151+ [documentation](https://cloud.ibm.com/docs/services/assistant?topic=assistant-api-overview).
148152 There is no rate limit for this operation.
149153
150154 :param str workspace_id: Unique identifier of the workspace.
@@ -6773,9 +6777,9 @@ class RuntimeEntity(object):
67736777 :attr str entity: An entity detected in the input.
67746778 :attr list[int] location: An array of zero-based character offsets that indicate where
67756779 the detected entity values begin and end in the input text.
6776- :attr str value: The term in the input text that was recognized as an entity value .
6780+ :attr str value: The entity value that was recognized in the user input .
67776781 :attr float confidence: (optional) A decimal percentage that represents Watson's
6778- confidence in the entity.
6782+ confidence in the recognized entity.
67796783 :attr dict metadata: (optional) Any metadata for the entity.
67806784 :attr list[CaptureGroup] groups: (optional) The recognized capture groups for the
67816785 entity, as defined by the entity pattern.
@@ -6795,10 +6799,9 @@ def __init__(self,
67956799 :param str entity: An entity detected in the input.
67966800 :param list[int] location: An array of zero-based character offsets that indicate
67976801 where the detected entity values begin and end in the input text.
6798- :param str value: The term in the input text that was recognized as an entity
6799- value.
6802+ :param str value: The entity value that was recognized in the user input.
68006803 :param float confidence: (optional) A decimal percentage that represents Watson's
6801- confidence in the entity.
6804+ confidence in the recognized entity.
68026805 :param dict metadata: (optional) Any metadata for the entity.
68036806 :param list[CaptureGroup] groups: (optional) The recognized capture groups for the
68046807 entity, as defined by the entity pattern.
0 commit comments