@@ -4,6 +4,21 @@ channel:
44 auth : false
55 docs : Chat with Empathic Voice Interface (EVI)
66 query-parameters :
7+ access_token :
8+ type : optional<string>
9+ default : ' '
10+ docs : >-
11+ Access token used for authenticating the client. If not provided, an
12+ `api_key` must be provided to authenticate.
13+
14+
15+ The access token is generated using both an API key and a Secret key,
16+ which provides an additional layer of security compared to using just an
17+ API key.
18+
19+
20+ For more details, refer to the [Authentication Strategies
21+ Guide](/docs/introduction/api-key#authentication-strategies).
722 config_id :
823 type : optional<string>
924 docs : >-
@@ -32,6 +47,13 @@ channel:
3247
3348 Include this parameter to apply a specific version of an EVI
3449 configuration. If omitted, the latest version will be applied.
50+ event_limit :
51+ type : optional<integer>
52+ docs : >-
53+ The maximum number of chat events to return from chat history. By
54+ default, the system returns up to 300 events (100 events per page × 3
55+ pages). Set this parameter to a smaller value to limit the number of
56+ events returned.
3557 resumed_chat_group_id :
3658 type : optional<string>
3759 docs : >-
@@ -76,12 +98,6 @@ channel:
7698 Use the GET `/v0/evi/chat_groups` endpoint to obtain the Chat Group IDs
7799 of all Chat Groups associated with an API key. This endpoint returns a
78100 list of all available chat groups.
79- voice_id :
80- type : optional<string>
81- docs : >-
82- The name or ID of the voice from the `Voice Library` to be used as the
83- speaker for this EVI session. This will override the speaker set in the
84- selected configuration.
85101 verbose_transcription :
86102 type : optional<boolean>
87103 default : false
@@ -93,28 +109,12 @@ channel:
93109 field on a
94110 [UserMessage](/reference/speech-to-speech-evi/chat#receive.UserMessage)
95111 denotes whether the message is "interim" or "final."
96- event_limit :
97- type : optional<integer>
98- docs : >-
99- The maximum number of chat events to return from chat history. By
100- default, the system returns up to 300 events (100 events per page × 3
101- pages). Set this parameter to a smaller value to limit the number of
102- events returned.
103- access_token :
112+ voice_id :
104113 type : optional<string>
105- default : ' '
106114 docs : >-
107- Access token used for authenticating the client. If not provided, an
108- `api_key` must be provided to authenticate.
109-
110-
111- The access token is generated using both an API key and a Secret key,
112- which provides an additional layer of security compared to using just an
113- API key.
114-
115-
116- For more details, refer to the [Authentication Strategies
117- Guide](/docs/introduction/api-key#authentication-strategies).
115+ The name or ID of the voice from the `Voice Library` to be used as the
116+ speaker for this EVI session. This will override the speaker set in the
117+ selected configuration.
118118 api_key :
119119 type : optional<string>
120120 default : ' '
@@ -136,8 +136,8 @@ channel:
136136 - messages :
137137 - type : publish
138138 body :
139- type : audio_input
140139 data : data
140+ type : audio_input
141141 - type : subscribe
142142 body :
143143 type : assistant_end
0 commit comments