hume 0.8.5 → 0.8.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.mock/definition/empathic-voice/__package__.yml +35 -34
- package/.mock/definition/empathic-voice/chatGroups.yml +338 -27
- package/.mock/definition/empathic-voice/chats.yml +353 -36
- package/.mock/definition/empathic-voice/configs.yml +282 -210
- package/.mock/definition/empathic-voice/prompts.yml +140 -64
- package/.mock/definition/empathic-voice/tools.yml +11 -8
- package/.mock/definition/expression-measurement/__package__.yml +203 -59
- package/.mock/definition/expression-measurement/batch.yml +64 -35
- package/.mock/fern.config.json +1 -1
- package/api/resources/empathicVoice/resources/chatGroups/client/Client.d.ts +11 -2
- package/api/resources/empathicVoice/resources/chatGroups/client/Client.js +13 -4
- package/api/resources/empathicVoice/resources/chatGroups/client/requests/ChatGroupsListChatGroupEventsRequest.d.ts +7 -3
- package/api/resources/empathicVoice/resources/chatGroups/client/requests/ChatGroupsListChatGroupsRequest.d.ts +8 -3
- package/api/resources/empathicVoice/resources/chats/client/Client.d.ts +12 -4
- package/api/resources/empathicVoice/resources/chats/client/Client.js +128 -96
- package/api/resources/empathicVoice/resources/chats/client/requests/ChatsListChatEventsRequest.d.ts +7 -3
- package/api/resources/empathicVoice/resources/chats/client/requests/ChatsListChatsRequest.d.ts +7 -3
- package/api/resources/empathicVoice/resources/configs/client/Client.d.ts +74 -10
- package/api/resources/empathicVoice/resources/configs/client/Client.js +83 -19
- package/api/resources/empathicVoice/resources/configs/client/requests/ConfigsListConfigVersionsRequest.d.ts +2 -2
- package/api/resources/empathicVoice/resources/configs/client/requests/ConfigsListConfigsRequest.d.ts +6 -3
- package/api/resources/empathicVoice/resources/configs/client/requests/PostedConfig.d.ts +28 -1
- package/api/resources/empathicVoice/resources/configs/client/requests/PostedConfigName.d.ts +1 -1
- package/api/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersion.d.ts +33 -1
- package/api/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersionDescription.d.ts +3 -1
- package/api/resources/empathicVoice/resources/prompts/client/Client.d.ts +19 -13
- package/api/resources/empathicVoice/resources/prompts/client/Client.js +89 -70
- package/api/resources/empathicVoice/resources/prompts/client/requests/PostedPrompt.d.ts +2 -2
- package/api/resources/empathicVoice/resources/prompts/client/requests/PostedPromptName.d.ts +1 -1
- package/api/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersion.d.ts +2 -1
- package/api/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersionDescription.d.ts +3 -1
- package/api/resources/empathicVoice/resources/prompts/client/requests/PromptsListPromptVersionsRequest.d.ts +2 -2
- package/api/resources/empathicVoice/resources/prompts/client/requests/PromptsListPromptsRequest.d.ts +6 -3
- package/api/resources/empathicVoice/resources/tools/client/Client.d.ts +1 -1
- package/api/resources/empathicVoice/resources/tools/client/Client.js +71 -58
- package/api/resources/empathicVoice/resources/tools/client/requests/ToolsListToolVersionsRequest.d.ts +2 -2
- package/api/resources/empathicVoice/resources/tools/client/requests/ToolsListToolsRequest.d.ts +2 -2
- package/api/resources/empathicVoice/types/AudioInput.d.ts +4 -2
- package/api/resources/empathicVoice/types/JsonMessage.d.ts +1 -1
- package/api/resources/expressionMeasurement/resources/batch/client/Client.d.ts +4 -4
- package/api/resources/expressionMeasurement/resources/batch/client/Client.js +11 -19
- package/api/resources/expressionMeasurement/resources/batch/client/requests/BatchListJobsRequest.d.ts +25 -9
- package/api/resources/expressionMeasurement/resources/batch/client/requests/BatchStartInferenceJobFromLocalFileRequest.d.ts +1 -0
- package/api/resources/expressionMeasurement/types/{UnionJobJobInference.d.ts → CustomModelsInferenceJob.d.ts} +2 -1
- package/api/resources/expressionMeasurement/types/{UnionJobJobEmbeddingGeneration.d.ts → CustomModelsTrainingJob.d.ts} +2 -1
- package/api/resources/expressionMeasurement/types/EmbeddingGenerationJob.d.ts +7 -0
- package/api/resources/expressionMeasurement/types/Face.d.ts +5 -0
- package/api/resources/expressionMeasurement/types/File_.d.ts +3 -0
- package/api/resources/expressionMeasurement/types/Granularity.d.ts +9 -1
- package/api/resources/expressionMeasurement/types/InferenceBaseRequest.d.ts +6 -1
- package/api/resources/expressionMeasurement/types/InferenceJob.d.ts +12 -0
- package/api/resources/expressionMeasurement/types/JobInference.d.ts +3 -0
- package/api/resources/expressionMeasurement/types/Language.d.ts +5 -0
- package/api/resources/expressionMeasurement/types/Models.d.ts +3 -0
- package/api/resources/expressionMeasurement/types/Ner.d.ts +5 -0
- package/api/resources/expressionMeasurement/types/Prosody.d.ts +5 -0
- package/api/resources/expressionMeasurement/types/Transcription.d.ts +40 -0
- package/api/resources/expressionMeasurement/types/UnionJob.d.ts +1 -15
- package/api/resources/expressionMeasurement/types/UnionPredictResult.d.ts +1 -1
- package/api/resources/expressionMeasurement/types/Window.d.ts +5 -0
- package/api/resources/expressionMeasurement/types/index.d.ts +4 -4
- package/api/resources/expressionMeasurement/types/index.js +4 -4
- package/api/resources/index.d.ts +1 -1
- package/api/resources/index.js +2 -2
- package/core/index.d.ts +1 -0
- package/core/index.js +1 -0
- package/core/pagination/Page.d.ts +29 -0
- package/core/pagination/Page.js +94 -0
- package/core/pagination/Pageable.d.ts +12 -0
- package/core/pagination/Pageable.js +10 -0
- package/core/pagination/index.d.ts +2 -0
- package/core/pagination/index.js +7 -0
- package/dist/api/resources/empathicVoice/resources/chatGroups/client/Client.d.ts +11 -2
- package/dist/api/resources/empathicVoice/resources/chatGroups/client/Client.js +13 -4
- package/dist/api/resources/empathicVoice/resources/chatGroups/client/requests/ChatGroupsListChatGroupEventsRequest.d.ts +7 -3
- package/dist/api/resources/empathicVoice/resources/chatGroups/client/requests/ChatGroupsListChatGroupsRequest.d.ts +8 -3
- package/dist/api/resources/empathicVoice/resources/chats/client/Client.d.ts +12 -4
- package/dist/api/resources/empathicVoice/resources/chats/client/Client.js +128 -96
- package/dist/api/resources/empathicVoice/resources/chats/client/requests/ChatsListChatEventsRequest.d.ts +7 -3
- package/dist/api/resources/empathicVoice/resources/chats/client/requests/ChatsListChatsRequest.d.ts +7 -3
- package/dist/api/resources/empathicVoice/resources/configs/client/Client.d.ts +74 -10
- package/dist/api/resources/empathicVoice/resources/configs/client/Client.js +83 -19
- package/dist/api/resources/empathicVoice/resources/configs/client/requests/ConfigsListConfigVersionsRequest.d.ts +2 -2
- package/dist/api/resources/empathicVoice/resources/configs/client/requests/ConfigsListConfigsRequest.d.ts +6 -3
- package/dist/api/resources/empathicVoice/resources/configs/client/requests/PostedConfig.d.ts +28 -1
- package/dist/api/resources/empathicVoice/resources/configs/client/requests/PostedConfigName.d.ts +1 -1
- package/dist/api/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersion.d.ts +33 -1
- package/dist/api/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersionDescription.d.ts +3 -1
- package/dist/api/resources/empathicVoice/resources/prompts/client/Client.d.ts +19 -13
- package/dist/api/resources/empathicVoice/resources/prompts/client/Client.js +89 -70
- package/dist/api/resources/empathicVoice/resources/prompts/client/requests/PostedPrompt.d.ts +2 -2
- package/dist/api/resources/empathicVoice/resources/prompts/client/requests/PostedPromptName.d.ts +1 -1
- package/dist/api/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersion.d.ts +2 -1
- package/dist/api/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersionDescription.d.ts +3 -1
- package/dist/api/resources/empathicVoice/resources/prompts/client/requests/PromptsListPromptVersionsRequest.d.ts +2 -2
- package/dist/api/resources/empathicVoice/resources/prompts/client/requests/PromptsListPromptsRequest.d.ts +6 -3
- package/dist/api/resources/empathicVoice/resources/tools/client/Client.d.ts +1 -1
- package/dist/api/resources/empathicVoice/resources/tools/client/Client.js +71 -58
- package/dist/api/resources/empathicVoice/resources/tools/client/requests/ToolsListToolVersionsRequest.d.ts +2 -2
- package/dist/api/resources/empathicVoice/resources/tools/client/requests/ToolsListToolsRequest.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/AudioInput.d.ts +4 -2
- package/dist/api/resources/empathicVoice/types/JsonMessage.d.ts +1 -1
- package/dist/api/resources/expressionMeasurement/resources/batch/client/Client.d.ts +4 -4
- package/dist/api/resources/expressionMeasurement/resources/batch/client/Client.js +11 -19
- package/dist/api/resources/expressionMeasurement/resources/batch/client/requests/BatchListJobsRequest.d.ts +25 -9
- package/dist/api/resources/expressionMeasurement/resources/batch/client/requests/BatchStartInferenceJobFromLocalFileRequest.d.ts +1 -0
- package/{api/resources/expressionMeasurement/types/UnionJobJobTraining.d.ts → dist/api/resources/expressionMeasurement/types/CustomModelsInferenceJob.d.ts} +2 -1
- package/{api/resources/expressionMeasurement/types/UnionJobJobTlInference.d.ts → dist/api/resources/expressionMeasurement/types/CustomModelsTrainingJob.d.ts} +2 -1
- package/dist/api/resources/expressionMeasurement/types/EmbeddingGenerationJob.d.ts +7 -0
- package/dist/api/resources/expressionMeasurement/types/Face.d.ts +5 -0
- package/dist/api/resources/expressionMeasurement/types/File_.d.ts +3 -0
- package/dist/api/resources/expressionMeasurement/types/Granularity.d.ts +9 -1
- package/dist/api/resources/expressionMeasurement/types/InferenceBaseRequest.d.ts +6 -1
- package/dist/api/resources/expressionMeasurement/types/InferenceJob.d.ts +12 -0
- package/dist/api/resources/expressionMeasurement/types/JobInference.d.ts +3 -0
- package/dist/api/resources/expressionMeasurement/types/Language.d.ts +5 -0
- package/dist/api/resources/expressionMeasurement/types/Models.d.ts +3 -0
- package/dist/api/resources/expressionMeasurement/types/Ner.d.ts +5 -0
- package/dist/api/resources/expressionMeasurement/types/Prosody.d.ts +5 -0
- package/dist/api/resources/expressionMeasurement/types/Transcription.d.ts +40 -0
- package/dist/api/resources/expressionMeasurement/types/UnionJob.d.ts +1 -15
- package/dist/api/resources/expressionMeasurement/types/UnionPredictResult.d.ts +1 -1
- package/dist/api/resources/expressionMeasurement/types/Window.d.ts +5 -0
- package/dist/api/resources/expressionMeasurement/types/index.d.ts +4 -4
- package/dist/api/resources/expressionMeasurement/types/index.js +4 -4
- package/dist/api/resources/index.d.ts +1 -1
- package/dist/api/resources/index.js +2 -2
- package/dist/core/index.d.ts +1 -0
- package/dist/core/index.js +1 -0
- package/dist/core/pagination/Page.d.ts +29 -0
- package/dist/core/pagination/Page.js +94 -0
- package/dist/core/pagination/Pageable.d.ts +12 -0
- package/dist/core/pagination/Pageable.js +10 -0
- package/dist/core/pagination/index.d.ts +2 -0
- package/dist/core/pagination/index.js +7 -0
- package/dist/serialization/resources/empathicVoice/types/JsonMessage.d.ts +2 -1
- package/dist/serialization/resources/empathicVoice/types/JsonMessage.js +2 -0
- package/{serialization/resources/expressionMeasurement/types/UnionJobJobTlInference.d.ts → dist/serialization/resources/expressionMeasurement/types/CustomModelsInferenceJob.d.ts} +3 -2
- package/{serialization/resources/expressionMeasurement/types/UnionJobJobTlInference.js → dist/serialization/resources/expressionMeasurement/types/CustomModelsInferenceJob.js} +6 -2
- package/{serialization/resources/expressionMeasurement/types/UnionJobJobTraining.d.ts → dist/serialization/resources/expressionMeasurement/types/CustomModelsTrainingJob.d.ts} +3 -2
- package/{serialization/resources/expressionMeasurement/types/UnionJobJobTraining.js → dist/serialization/resources/expressionMeasurement/types/CustomModelsTrainingJob.js} +6 -2
- package/dist/serialization/resources/expressionMeasurement/types/{UnionJobJobEmbeddingGeneration.d.ts → EmbeddingGenerationJob.d.ts} +3 -2
- package/dist/serialization/resources/expressionMeasurement/types/{UnionJobJobEmbeddingGeneration.js → EmbeddingGenerationJob.js} +6 -2
- package/{serialization/resources/expressionMeasurement/types/UnionJobJobInference.d.ts → dist/serialization/resources/expressionMeasurement/types/InferenceJob.d.ts} +3 -2
- package/{serialization/resources/expressionMeasurement/types/UnionJobJobInference.js → dist/serialization/resources/expressionMeasurement/types/InferenceJob.js} +6 -2
- package/dist/serialization/resources/expressionMeasurement/types/UnionJob.d.ts +3 -18
- package/dist/serialization/resources/expressionMeasurement/types/UnionJob.js +2 -39
- package/dist/serialization/resources/expressionMeasurement/types/UnionPredictResult.d.ts +2 -3
- package/dist/serialization/resources/expressionMeasurement/types/UnionPredictResult.js +1 -29
- package/dist/serialization/resources/expressionMeasurement/types/index.d.ts +4 -4
- package/dist/serialization/resources/expressionMeasurement/types/index.js +4 -4
- package/dist/serialization/resources/index.d.ts +1 -1
- package/dist/serialization/resources/index.js +2 -2
- package/package.json +1 -1
- package/reference.md +596 -544
- package/serialization/resources/empathicVoice/types/JsonMessage.d.ts +2 -1
- package/serialization/resources/empathicVoice/types/JsonMessage.js +2 -0
- package/{dist/serialization/resources/expressionMeasurement/types/UnionJobJobTlInference.d.ts → serialization/resources/expressionMeasurement/types/CustomModelsInferenceJob.d.ts} +3 -2
- package/{dist/serialization/resources/expressionMeasurement/types/UnionJobJobTlInference.js → serialization/resources/expressionMeasurement/types/CustomModelsInferenceJob.js} +6 -2
- package/{dist/serialization/resources/expressionMeasurement/types/UnionJobJobTraining.d.ts → serialization/resources/expressionMeasurement/types/CustomModelsTrainingJob.d.ts} +3 -2
- package/{dist/serialization/resources/expressionMeasurement/types/UnionJobJobTraining.js → serialization/resources/expressionMeasurement/types/CustomModelsTrainingJob.js} +6 -2
- package/serialization/resources/expressionMeasurement/types/{UnionJobJobEmbeddingGeneration.d.ts → EmbeddingGenerationJob.d.ts} +3 -2
- package/serialization/resources/expressionMeasurement/types/{UnionJobJobEmbeddingGeneration.js → EmbeddingGenerationJob.js} +6 -2
- package/{dist/serialization/resources/expressionMeasurement/types/UnionJobJobInference.d.ts → serialization/resources/expressionMeasurement/types/InferenceJob.d.ts} +3 -2
- package/{dist/serialization/resources/expressionMeasurement/types/UnionJobJobInference.js → serialization/resources/expressionMeasurement/types/InferenceJob.js} +6 -2
- package/serialization/resources/expressionMeasurement/types/UnionJob.d.ts +3 -18
- package/serialization/resources/expressionMeasurement/types/UnionJob.js +2 -39
- package/serialization/resources/expressionMeasurement/types/UnionPredictResult.d.ts +2 -3
- package/serialization/resources/expressionMeasurement/types/UnionPredictResult.js +1 -29
- package/serialization/resources/expressionMeasurement/types/index.d.ts +4 -4
- package/serialization/resources/expressionMeasurement/types/index.js +4 -4
- package/serialization/resources/index.d.ts +1 -1
- package/serialization/resources/index.js +2 -2
- package/dist/api/resources/expressionMeasurement/types/UnionJobJobEmbeddingGeneration.d.ts +0 -6
- package/dist/api/resources/expressionMeasurement/types/UnionJobJobInference.d.ts +0 -6
- package/dist/api/resources/expressionMeasurement/types/UnionJobJobTlInference.d.ts +0 -6
- package/dist/api/resources/expressionMeasurement/types/UnionJobJobTraining.d.ts +0 -6
- /package/api/resources/expressionMeasurement/types/{UnionJobJobEmbeddingGeneration.js → CustomModelsInferenceJob.js} +0 -0
- /package/api/resources/expressionMeasurement/types/{UnionJobJobInference.js → CustomModelsTrainingJob.js} +0 -0
- /package/api/resources/expressionMeasurement/types/{UnionJobJobTlInference.js → EmbeddingGenerationJob.js} +0 -0
- /package/api/resources/expressionMeasurement/types/{UnionJobJobTraining.js → InferenceJob.js} +0 -0
- /package/dist/api/resources/expressionMeasurement/types/{UnionJobJobEmbeddingGeneration.js → CustomModelsInferenceJob.js} +0 -0
- /package/dist/api/resources/expressionMeasurement/types/{UnionJobJobInference.js → CustomModelsTrainingJob.js} +0 -0
- /package/dist/api/resources/expressionMeasurement/types/{UnionJobJobTlInference.js → EmbeddingGenerationJob.js} +0 -0
- /package/dist/api/resources/expressionMeasurement/types/{UnionJobJobTraining.js → InferenceJob.js} +0 -0
|
@@ -49,12 +49,12 @@ types:
|
|
|
49
49
|
type: string
|
|
50
50
|
docs: Name applied to all versions of a particular Tool.
|
|
51
51
|
created_on:
|
|
52
|
-
type:
|
|
52
|
+
type: long
|
|
53
53
|
docs: >-
|
|
54
54
|
Time at which the Tool was created. Measured in seconds since the Unix
|
|
55
55
|
epoch.
|
|
56
56
|
modified_on:
|
|
57
|
-
type:
|
|
57
|
+
type: long
|
|
58
58
|
docs: >-
|
|
59
59
|
Time at which the Tool was last modified. Measured in seconds since
|
|
60
60
|
the Unix epoch.
|
|
@@ -119,12 +119,12 @@ types:
|
|
|
119
119
|
type: string
|
|
120
120
|
docs: Name applied to all versions of a particular Prompt.
|
|
121
121
|
created_on:
|
|
122
|
-
type:
|
|
122
|
+
type: long
|
|
123
123
|
docs: >-
|
|
124
124
|
Time at which the Prompt was created. Measured in seconds since the
|
|
125
125
|
Unix epoch.
|
|
126
126
|
modified_on:
|
|
127
|
-
type:
|
|
127
|
+
type: long
|
|
128
128
|
docs: >-
|
|
129
129
|
Time at which the Prompt was last modified. Measured in seconds since
|
|
130
130
|
the Unix epoch.
|
|
@@ -155,7 +155,7 @@ types:
|
|
|
155
155
|
type: string
|
|
156
156
|
docs: The voice the custom voice is based off of.
|
|
157
157
|
speech_rate_multiplier:
|
|
158
|
-
type: optional<
|
|
158
|
+
type: optional<float>
|
|
159
159
|
docs: The speech rate multiplier for this custom voice.
|
|
160
160
|
parameter_model:
|
|
161
161
|
type: string
|
|
@@ -163,7 +163,7 @@ types:
|
|
|
163
163
|
The name of the parameter model used to define which attributes are
|
|
164
164
|
used by `parameters`.
|
|
165
165
|
parameters:
|
|
166
|
-
type: optional<map<string, optional<
|
|
166
|
+
type: optional<map<string, optional<float>>>
|
|
167
167
|
docs: Voice specification for a Config.
|
|
168
168
|
ReturnCustomVoice:
|
|
169
169
|
docs: A custom voice specification returned from the server
|
|
@@ -182,16 +182,16 @@ types:
|
|
|
182
182
|
String with the name of the voice to use. Maximum length of 75
|
|
183
183
|
characters. Will be converted to all-uppercase.
|
|
184
184
|
created_on:
|
|
185
|
-
type:
|
|
185
|
+
type: long
|
|
186
186
|
docs: The timestamp when the first version of this prompt was created.
|
|
187
187
|
modified_on:
|
|
188
|
-
type:
|
|
188
|
+
type: long
|
|
189
189
|
docs: The timestamp when this version of the prompt was created.
|
|
190
190
|
base_voice:
|
|
191
191
|
type: string
|
|
192
192
|
docs: The voice the custom voice is based off of.
|
|
193
193
|
speech_rate_multiplier:
|
|
194
|
-
type: optional<
|
|
194
|
+
type: optional<float>
|
|
195
195
|
docs: The speech rate multiplier for this custom voice.
|
|
196
196
|
parameter_model:
|
|
197
197
|
type: string
|
|
@@ -200,7 +200,7 @@ types:
|
|
|
200
200
|
used by `parameters`.
|
|
201
201
|
parameters:
|
|
202
202
|
docs: Voice specification for a Config.
|
|
203
|
-
type: map<string,
|
|
203
|
+
type: map<string, float>
|
|
204
204
|
PostedBuiltinTool:
|
|
205
205
|
docs: A configuration of a built-in tool to be posted to the server
|
|
206
206
|
properties:
|
|
@@ -299,7 +299,7 @@ types:
|
|
|
299
299
|
type: optional<string>
|
|
300
300
|
docs: String that specifies the language model to use with `model_provider`.
|
|
301
301
|
temperature:
|
|
302
|
-
type: optional<
|
|
302
|
+
type: optional<float>
|
|
303
303
|
docs: >-
|
|
304
304
|
The model temperature, with values between 0 to 1 (inclusive).
|
|
305
305
|
|
|
@@ -505,12 +505,12 @@ types:
|
|
|
505
505
|
type: optional<string>
|
|
506
506
|
docs: Name applied to all versions of a particular Config.
|
|
507
507
|
created_on:
|
|
508
|
-
type: optional<
|
|
508
|
+
type: optional<long>
|
|
509
509
|
docs: >-
|
|
510
510
|
Time at which the Config was created. Measured in seconds since the
|
|
511
511
|
Unix epoch.
|
|
512
512
|
modified_on:
|
|
513
|
-
type: optional<
|
|
513
|
+
type: optional<long>
|
|
514
514
|
docs: >-
|
|
515
515
|
Time at which the Config was last modified. Measured in seconds since
|
|
516
516
|
the Unix epoch.
|
|
@@ -631,7 +631,7 @@ types:
|
|
|
631
631
|
type: optional<string>
|
|
632
632
|
docs: String that specifies the language model to use with `model_provider`.
|
|
633
633
|
temperature:
|
|
634
|
-
type: optional<
|
|
634
|
+
type: optional<float>
|
|
635
635
|
docs: >-
|
|
636
636
|
The model temperature, with values between 0 to 1 (inclusive).
|
|
637
637
|
|
|
@@ -879,17 +879,17 @@ types:
|
|
|
879
879
|
|
|
880
880
|
- `ERROR`: The chat ended unexpectedly due to an error.
|
|
881
881
|
start_timestamp:
|
|
882
|
-
type:
|
|
882
|
+
type: long
|
|
883
883
|
docs: >-
|
|
884
884
|
Time at which the Chat started. Measured in seconds since the Unix
|
|
885
885
|
epoch.
|
|
886
886
|
end_timestamp:
|
|
887
|
-
type: optional<
|
|
887
|
+
type: optional<long>
|
|
888
888
|
docs: >-
|
|
889
889
|
Time at which the Chat ended. Measured in seconds since the Unix
|
|
890
890
|
epoch.
|
|
891
891
|
event_count:
|
|
892
|
-
type: optional<
|
|
892
|
+
type: optional<long>
|
|
893
893
|
docs: The total number of events currently in this chat.
|
|
894
894
|
metadata:
|
|
895
895
|
type: optional<string>
|
|
@@ -1027,7 +1027,7 @@ types:
|
|
|
1027
1027
|
type: string
|
|
1028
1028
|
docs: Identifier for the Chat this event occurred in. Formatted as a UUID.
|
|
1029
1029
|
timestamp:
|
|
1030
|
-
type:
|
|
1030
|
+
type: long
|
|
1031
1031
|
docs: >-
|
|
1032
1032
|
Time at which the Chat Event occurred. Measured in seconds since the
|
|
1033
1033
|
Unix epoch.
|
|
@@ -1172,12 +1172,12 @@ types:
|
|
|
1172
1172
|
|
|
1173
1173
|
- `ERROR`: The chat ended unexpectedly due to an error.
|
|
1174
1174
|
start_timestamp:
|
|
1175
|
-
type:
|
|
1175
|
+
type: long
|
|
1176
1176
|
docs: >-
|
|
1177
1177
|
Time at which the Chat started. Measured in seconds since the Unix
|
|
1178
1178
|
epoch.
|
|
1179
1179
|
end_timestamp:
|
|
1180
|
-
type: optional<
|
|
1180
|
+
type: optional<long>
|
|
1181
1181
|
docs: >-
|
|
1182
1182
|
Time at which the Chat ended. Measured in seconds since the Unix
|
|
1183
1183
|
epoch.
|
|
@@ -1222,7 +1222,7 @@ types:
|
|
|
1222
1222
|
docs: A description of current chat chat sessions for a user
|
|
1223
1223
|
properties:
|
|
1224
1224
|
timestamp:
|
|
1225
|
-
type:
|
|
1225
|
+
type: long
|
|
1226
1226
|
docs: >-
|
|
1227
1227
|
The timestamp for when chat status was measured. Formatted as a Unix
|
|
1228
1228
|
epoch milliseconds.
|
|
@@ -1256,12 +1256,12 @@ types:
|
|
|
1256
1256
|
Identifier for the Chat Group. Any Chat resumed from this Chat Group
|
|
1257
1257
|
will have the same `chat_group_id`. Formatted as a UUID.
|
|
1258
1258
|
first_start_timestamp:
|
|
1259
|
-
type:
|
|
1259
|
+
type: long
|
|
1260
1260
|
docs: >-
|
|
1261
1261
|
Time at which the first Chat in this Chat Group was created. Measured
|
|
1262
1262
|
in seconds since the Unix epoch.
|
|
1263
1263
|
most_recent_start_timestamp:
|
|
1264
|
-
type:
|
|
1264
|
+
type: long
|
|
1265
1265
|
docs: >-
|
|
1266
1266
|
Time at which the most recent Chat in this Chat Group was created.
|
|
1267
1267
|
Measured in seconds since the Unix epoch.
|
|
@@ -1336,12 +1336,12 @@ types:
|
|
|
1336
1336
|
Identifier for the chat group. Any chat resumed from this chat will
|
|
1337
1337
|
have the same chat_group_id. Formatted as a UUID.
|
|
1338
1338
|
first_start_timestamp:
|
|
1339
|
-
type:
|
|
1339
|
+
type: long
|
|
1340
1340
|
docs: >-
|
|
1341
1341
|
The timestamp when the first chat in this chat group started,
|
|
1342
1342
|
formatted as a Unix epoch milliseconds.
|
|
1343
1343
|
most_recent_start_timestamp:
|
|
1344
|
-
type:
|
|
1344
|
+
type: long
|
|
1345
1345
|
docs: >-
|
|
1346
1346
|
The timestamp when the most recent chat in this chat group started,
|
|
1347
1347
|
formatted as a Unix epoch milliseconds.
|
|
@@ -1487,17 +1487,17 @@ types:
|
|
|
1487
1487
|
Base64 encoded audio input to insert into the conversation.
|
|
1488
1488
|
|
|
1489
1489
|
|
|
1490
|
-
The
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
recommend recording the audio in 100ms intervals and adjusting from
|
|
1494
|
-
there to determine if smaller or larger chunks are needed. These
|
|
1495
|
-
chunks should be continuously sent to EVI as Audio Input messages.
|
|
1490
|
+
The content of an Audio Input message is treated as the user’s speech
|
|
1491
|
+
to EVI and must be streamed continuously. Pre-recorded audio files are
|
|
1492
|
+
not supported.
|
|
1496
1493
|
|
|
1497
1494
|
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1495
|
+
For optimal transcription quality, the audio data should be
|
|
1496
|
+
transmitted in small chunks.
|
|
1497
|
+
|
|
1498
|
+
|
|
1499
|
+
Hume recommends streaming audio with a buffer window of 20
|
|
1500
|
+
milliseconds (ms), or 100 milliseconds (ms) for web applications.
|
|
1501
1501
|
BuiltInTool:
|
|
1502
1502
|
type: literal<"web_search">
|
|
1503
1503
|
docs: >-
|
|
@@ -2263,6 +2263,7 @@ types:
|
|
|
2263
2263
|
JsonMessage:
|
|
2264
2264
|
discriminated: false
|
|
2265
2265
|
union:
|
|
2266
|
+
- AssistantEnd
|
|
2266
2267
|
- AssistantMessage
|
|
2267
2268
|
- ChatMetadata
|
|
2268
2269
|
- WebSocketError
|
|
@@ -27,12 +27,12 @@ service:
|
|
|
27
27
|
type: optional<integer>
|
|
28
28
|
docs: >-
|
|
29
29
|
Specifies the maximum number of results to include per page,
|
|
30
|
-
enabling pagination.
|
|
30
|
+
enabling pagination. The value must be between 1 and 100,
|
|
31
|
+
inclusive.
|
|
31
32
|
|
|
32
33
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
Defaults to 10.
|
|
34
|
+
For example, if `page_size` is set to 10, each page will include
|
|
35
|
+
up to 10 items. Defaults to 10.
|
|
36
36
|
ascending_order:
|
|
37
37
|
type: optional<boolean>
|
|
38
38
|
docs: >-
|
|
@@ -53,19 +53,24 @@ service:
|
|
|
53
53
|
docs: Success
|
|
54
54
|
type: root.ReturnPagedChatGroups
|
|
55
55
|
examples:
|
|
56
|
-
-
|
|
56
|
+
- query-parameters:
|
|
57
|
+
page_number: 0
|
|
58
|
+
page_size: 1
|
|
59
|
+
ascending_order: true
|
|
60
|
+
config_id: 1b60e1a0-cc59-424a-8d2c-189d354db3f3
|
|
61
|
+
response:
|
|
57
62
|
body:
|
|
58
|
-
page_number:
|
|
63
|
+
page_number: 0
|
|
59
64
|
page_size: 1
|
|
60
65
|
total_pages: 1
|
|
61
66
|
pagination_direction: ASC
|
|
62
67
|
chat_groups_page:
|
|
63
|
-
- id:
|
|
64
|
-
first_start_timestamp:
|
|
65
|
-
most_recent_start_timestamp:
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
68
|
+
- id: 697056f0-6c7e-487d-9bd8-9c19df79f05f
|
|
69
|
+
first_start_timestamp: 1721844196397
|
|
70
|
+
most_recent_start_timestamp: 1721861821717
|
|
71
|
+
active: false
|
|
72
|
+
most_recent_chat_id: dfdbdd4d-0ddf-418b-8fc4-80a266579d36
|
|
73
|
+
num_chats: 5
|
|
69
74
|
list-chat-group-events:
|
|
70
75
|
path: /v0/evi/chat_groups/{id}/events
|
|
71
76
|
method: GET
|
|
@@ -82,12 +87,12 @@ service:
|
|
|
82
87
|
type: optional<integer>
|
|
83
88
|
docs: >-
|
|
84
89
|
Specifies the maximum number of results to include per page,
|
|
85
|
-
enabling pagination.
|
|
90
|
+
enabling pagination. The value must be between 1 and 100,
|
|
91
|
+
inclusive.
|
|
86
92
|
|
|
87
93
|
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
Defaults to 10.
|
|
94
|
+
For example, if `page_size` is set to 10, each page will include
|
|
95
|
+
up to 10 items. Defaults to 10.
|
|
91
96
|
page_number:
|
|
92
97
|
type: optional<integer>
|
|
93
98
|
docs: >-
|
|
@@ -112,20 +117,326 @@ service:
|
|
|
112
117
|
type: root.ReturnChatGroupPagedEvents
|
|
113
118
|
examples:
|
|
114
119
|
- path-parameters:
|
|
115
|
-
id:
|
|
120
|
+
id: 697056f0-6c7e-487d-9bd8-9c19df79f05f
|
|
121
|
+
query-parameters:
|
|
122
|
+
page_number: 0
|
|
123
|
+
page_size: 3
|
|
124
|
+
ascending_order: true
|
|
116
125
|
response:
|
|
117
126
|
body:
|
|
118
|
-
id:
|
|
119
|
-
page_number:
|
|
120
|
-
page_size:
|
|
127
|
+
id: 697056f0-6c7e-487d-9bd8-9c19df79f05f
|
|
128
|
+
page_number: 0
|
|
129
|
+
page_size: 3
|
|
121
130
|
total_pages: 1
|
|
122
131
|
pagination_direction: ASC
|
|
123
132
|
events_page:
|
|
124
|
-
- id:
|
|
125
|
-
chat_id:
|
|
126
|
-
timestamp:
|
|
127
|
-
role:
|
|
133
|
+
- id: 5d44bdbb-49a3-40fb-871d-32bf7e76efe7
|
|
134
|
+
chat_id: 470a49f6-1dec-4afe-8b61-035d3b2d63b0
|
|
135
|
+
timestamp: 1716244940762
|
|
136
|
+
role: SYSTEM
|
|
128
137
|
type: SYSTEM_PROMPT
|
|
129
|
-
message_text:
|
|
130
|
-
|
|
131
|
-
|
|
138
|
+
message_text: >-
|
|
139
|
+
<role>You are an AI weather assistant providing users with
|
|
140
|
+
accurate and up-to-date weather information. Respond to user
|
|
141
|
+
queries concisely and clearly. Use simple language and avoid
|
|
142
|
+
technical jargon. Provide temperature, precipitation, wind
|
|
143
|
+
conditions, and any weather alerts. Include helpful tips if
|
|
144
|
+
severe weather is expected.</role>
|
|
145
|
+
emotion_features: ''
|
|
146
|
+
metadata: ''
|
|
147
|
+
- id: 5976ddf6-d093-4bb9-ba60-8f6c25832dde
|
|
148
|
+
chat_id: 470a49f6-1dec-4afe-8b61-035d3b2d63b0
|
|
149
|
+
timestamp: 1716244956278
|
|
150
|
+
role: USER
|
|
151
|
+
type: USER_MESSAGE
|
|
152
|
+
message_text: Hello.
|
|
153
|
+
emotion_features: >-
|
|
154
|
+
{"Admiration": 0.09906005859375, "Adoration":
|
|
155
|
+
0.12213134765625, "Aesthetic Appreciation":
|
|
156
|
+
0.05035400390625, "Amusement": 0.16552734375, "Anger":
|
|
157
|
+
0.0037384033203125, "Anxiety": 0.010101318359375, "Awe":
|
|
158
|
+
0.058197021484375, "Awkwardness": 0.10552978515625,
|
|
159
|
+
"Boredom": 0.1141357421875, "Calmness": 0.115234375,
|
|
160
|
+
"Concentration": 0.00444793701171875, "Confusion":
|
|
161
|
+
0.0343017578125, "Contemplation": 0.00812530517578125,
|
|
162
|
+
"Contempt": 0.009002685546875, "Contentment":
|
|
163
|
+
0.087158203125, "Craving": 0.00818634033203125, "Desire":
|
|
164
|
+
0.018310546875, "Determination": 0.003238677978515625,
|
|
165
|
+
"Disappointment": 0.024169921875, "Disgust":
|
|
166
|
+
0.00702667236328125, "Distress": 0.00936126708984375,
|
|
167
|
+
"Doubt": 0.00632476806640625, "Ecstasy": 0.0293731689453125,
|
|
168
|
+
"Embarrassment": 0.01800537109375, "Empathic Pain":
|
|
169
|
+
0.0088348388671875, "Entrancement": 0.013397216796875,
|
|
170
|
+
"Envy": 0.02557373046875, "Excitement": 0.12109375, "Fear":
|
|
171
|
+
0.004413604736328125, "Guilt": 0.016571044921875, "Horror":
|
|
172
|
+
0.00274658203125, "Interest": 0.2142333984375, "Joy":
|
|
173
|
+
0.29638671875, "Love": 0.16015625, "Nostalgia":
|
|
174
|
+
0.007843017578125, "Pain": 0.007160186767578125, "Pride":
|
|
175
|
+
0.00508880615234375, "Realization": 0.054229736328125,
|
|
176
|
+
"Relief": 0.048736572265625, "Romance": 0.026397705078125,
|
|
177
|
+
"Sadness": 0.0265350341796875, "Satisfaction":
|
|
178
|
+
0.051361083984375, "Shame": 0.00974273681640625, "Surprise
|
|
179
|
+
(negative)": 0.0218963623046875, "Surprise (positive)":
|
|
180
|
+
0.216064453125, "Sympathy": 0.021728515625, "Tiredness":
|
|
181
|
+
0.0173797607421875, "Triumph": 0.004520416259765625}
|
|
182
|
+
metadata: >-
|
|
183
|
+
{"segments": [{"content": "Hello.", "embedding":
|
|
184
|
+
[0.6181640625, 0.1763916015625, -30.921875, 1.2705078125,
|
|
185
|
+
0.927734375, 0.63720703125, 2.865234375, 0.1080322265625,
|
|
186
|
+
0.2978515625, 1.0107421875, 1.34375, 0.74560546875,
|
|
187
|
+
0.416259765625, 0.99462890625, -0.333740234375,
|
|
188
|
+
0.361083984375, -1.388671875, 1.0107421875, 1.3173828125,
|
|
189
|
+
0.55615234375, 0.541015625, -0.1837158203125, 1.697265625,
|
|
190
|
+
0.228515625, 2.087890625, -0.311767578125,
|
|
191
|
+
0.053680419921875, 1.3349609375, 0.95068359375,
|
|
192
|
+
0.00441741943359375, 0.705078125, 1.8916015625,
|
|
193
|
+
-0.939453125, 0.93701171875, -0.28955078125, 1.513671875,
|
|
194
|
+
0.5595703125, 1.0126953125, -0.1624755859375, 1.4072265625,
|
|
195
|
+
-0.28857421875, -0.4560546875, -0.1500244140625,
|
|
196
|
+
-0.1102294921875, -0.222412109375, 0.8779296875,
|
|
197
|
+
1.275390625, 1.6689453125, 0.80712890625, -0.34814453125,
|
|
198
|
+
-0.325439453125, 0.412841796875, 0.81689453125,
|
|
199
|
+
0.55126953125, 1.671875, 0.6611328125, 0.7451171875,
|
|
200
|
+
1.50390625, 1.0224609375, -1.671875, 0.7373046875,
|
|
201
|
+
2.1328125, 2.166015625, 0.41015625, -0.127685546875,
|
|
202
|
+
1.9345703125, -4.2734375, 0.332275390625, 0.26171875,
|
|
203
|
+
0.76708984375, 0.2685546875, 0.468017578125, 1.208984375,
|
|
204
|
+
-1.517578125, 1.083984375, 0.84814453125, 1.0244140625,
|
|
205
|
+
-0.0072174072265625, 1.34375, 1.0712890625, 1.517578125,
|
|
206
|
+
-0.52001953125, 0.59228515625, 0.8154296875, -0.951171875,
|
|
207
|
+
-0.07757568359375, 1.3330078125, 1.125, 0.61181640625,
|
|
208
|
+
1.494140625, 0.357421875, 1.1796875, 1.482421875, 0.8046875,
|
|
209
|
+
0.1536865234375, 1.8076171875, 0.68115234375, -15.171875,
|
|
210
|
+
1.2294921875, 0.319091796875, 0.499755859375, 1.5771484375,
|
|
211
|
+
0.94677734375, -0.2490234375, 0.88525390625, 3.47265625,
|
|
212
|
+
0.75927734375, 0.71044921875, 1.2333984375, 1.4169921875,
|
|
213
|
+
-0.56640625, -1.8095703125, 1.37109375, 0.428955078125,
|
|
214
|
+
1.89453125, -0.39013671875, 0.1734619140625, 1.5595703125,
|
|
215
|
+
-1.2294921875, 2.552734375, 0.58349609375, 0.2156982421875,
|
|
216
|
+
-0.00984954833984375, -0.6865234375, -0.0272979736328125,
|
|
217
|
+
-0.2264404296875, 2.853515625, 1.3896484375, 0.52978515625,
|
|
218
|
+
0.783203125, 3.0390625, 0.75537109375, 0.219970703125,
|
|
219
|
+
0.384521484375, 0.385986328125, 2.0546875,
|
|
220
|
+
-0.10443115234375, 1.5146484375, 1.4296875, 1.9716796875,
|
|
221
|
+
1.1318359375, 0.31591796875, 0.338623046875, 1.654296875,
|
|
222
|
+
-0.88037109375, -0.21484375, 1.45703125, 1.0380859375,
|
|
223
|
+
-0.52294921875, -0.47802734375, 0.1650390625, 1.2392578125,
|
|
224
|
+
-1.138671875, 0.56787109375, 1.318359375, 0.4287109375,
|
|
225
|
+
0.1981201171875, 2.4375, 0.281005859375, 0.89404296875,
|
|
226
|
+
-0.1552734375, 0.6474609375, -0.08331298828125,
|
|
227
|
+
0.00740814208984375, -0.045501708984375, -0.578125,
|
|
228
|
+
2.02734375, 0.59228515625, 0.35693359375, 1.2919921875,
|
|
229
|
+
1.22265625, 1.0537109375, 0.145263671875, 1.05859375,
|
|
230
|
+
-0.369140625, 0.207275390625, 0.78857421875, 0.599609375,
|
|
231
|
+
0.99072265625, 0.24462890625, 1.26953125, 0.08404541015625,
|
|
232
|
+
1.349609375, 0.73291015625, 1.3212890625, 0.388916015625,
|
|
233
|
+
1.0869140625, 0.9931640625, -1.5673828125, 0.0462646484375,
|
|
234
|
+
0.650390625, 0.253662109375, 0.58251953125, 1.8134765625,
|
|
235
|
+
0.8642578125, 2.591796875, 0.7314453125, 0.85986328125,
|
|
236
|
+
0.5615234375, 0.9296875, 0.04144287109375, 1.66015625,
|
|
237
|
+
1.99609375, 1.171875, 1.181640625, 1.5126953125,
|
|
238
|
+
0.0224456787109375, 0.58349609375, -1.4931640625,
|
|
239
|
+
0.81884765625, 0.732421875, -0.6455078125, -0.62451171875,
|
|
240
|
+
1.7802734375, 0.01526641845703125, -0.423095703125,
|
|
241
|
+
0.461669921875, 4.87890625, 1.2392578125, -0.6953125,
|
|
242
|
+
0.6689453125, 0.62451171875, -1.521484375, 1.7685546875,
|
|
243
|
+
0.810546875, 0.65478515625, 0.26123046875, 1.6396484375,
|
|
244
|
+
0.87548828125, 1.7353515625, 2.046875, 1.5634765625,
|
|
245
|
+
0.69384765625, 1.375, 0.8916015625, 1.0107421875,
|
|
246
|
+
0.1304931640625, 2.009765625, 0.06402587890625,
|
|
247
|
+
-0.08428955078125, 0.04351806640625, -1.7529296875,
|
|
248
|
+
2.02734375, 3.521484375, 0.404541015625, 1.6337890625,
|
|
249
|
+
-0.276611328125, 0.8837890625, -0.1287841796875,
|
|
250
|
+
0.91064453125, 0.8193359375, 0.701171875, 0.036529541015625,
|
|
251
|
+
1.26171875, 1.0478515625, -0.1422119140625, 1.0634765625,
|
|
252
|
+
0.61083984375, 1.3505859375, 1.208984375, 0.57275390625,
|
|
253
|
+
1.3623046875, 2.267578125, 0.484375, 0.9150390625,
|
|
254
|
+
0.56787109375, -0.70068359375, 0.27587890625,
|
|
255
|
+
-0.70654296875, 0.8466796875, 0.57568359375, 1.6162109375,
|
|
256
|
+
0.87939453125, 2.248046875, -0.5458984375, 1.7744140625,
|
|
257
|
+
1.328125, 1.232421875, 0.6806640625, 0.9365234375,
|
|
258
|
+
1.052734375, -1.08984375, 1.8330078125, -0.4033203125,
|
|
259
|
+
1.0673828125, 0.297607421875, 1.5703125, 1.67578125,
|
|
260
|
+
1.34765625, 2.8203125, 2.025390625, -0.48583984375,
|
|
261
|
+
0.7626953125, 0.01007843017578125, 1.435546875,
|
|
262
|
+
0.007205963134765625, 0.05157470703125, -0.9853515625,
|
|
263
|
+
0.26708984375, 1.16796875, 1.2041015625, 1.99609375,
|
|
264
|
+
-0.07916259765625, 1.244140625, -0.32080078125,
|
|
265
|
+
0.6748046875, 0.419921875, 1.3212890625, 1.291015625,
|
|
266
|
+
0.599609375, 0.0550537109375, 0.9599609375, 0.93505859375,
|
|
267
|
+
0.111083984375, 1.302734375, 0.0833740234375, 2.244140625,
|
|
268
|
+
1.25390625, 1.6015625, 0.58349609375, 1.7568359375,
|
|
269
|
+
-0.263427734375, -0.019866943359375, -0.24658203125,
|
|
270
|
+
-0.1871337890625, 0.927734375, 0.62255859375,
|
|
271
|
+
0.275146484375, 0.79541015625, 1.1796875, 1.1767578125,
|
|
272
|
+
-0.26123046875, -0.268310546875, 1.8994140625, 1.318359375,
|
|
273
|
+
2.1875, 0.2469482421875, 1.41015625, 0.03973388671875,
|
|
274
|
+
1.2685546875, 1.1025390625, 0.9560546875, 0.865234375,
|
|
275
|
+
-1.92578125, 1.154296875, 0.389892578125, 1.130859375,
|
|
276
|
+
0.95947265625, 0.72314453125, 2.244140625,
|
|
277
|
+
0.048553466796875, 0.626953125, 0.42919921875,
|
|
278
|
+
0.82275390625, 0.311767578125, -0.320556640625,
|
|
279
|
+
0.01041412353515625, 0.1483154296875, 0.10809326171875,
|
|
280
|
+
-0.3173828125, 1.1337890625, -0.8642578125, 1.4033203125,
|
|
281
|
+
0.048828125, 1.1787109375, 0.98779296875, 1.818359375,
|
|
282
|
+
1.1552734375, 0.6015625, 1.2392578125, -1.2685546875,
|
|
283
|
+
0.39208984375, 0.83251953125, 0.224365234375,
|
|
284
|
+
0.0019989013671875, 0.87548828125, 1.6572265625,
|
|
285
|
+
1.107421875, 0.434814453125, 1.8251953125, 0.442626953125,
|
|
286
|
+
1.2587890625, 0.09320068359375, -0.896484375, 1.8017578125,
|
|
287
|
+
1.451171875, -0.0755615234375, 0.6083984375, 2.06640625,
|
|
288
|
+
0.673828125, -0.33740234375, 0.192138671875, 0.21435546875,
|
|
289
|
+
0.80224609375, -1.490234375, 0.9501953125, 0.86083984375,
|
|
290
|
+
-0.40283203125, 4.109375, 2.533203125, 1.2529296875,
|
|
291
|
+
0.8271484375, 0.225830078125, 1.0478515625, -1.9755859375,
|
|
292
|
+
0.841796875, 0.392822265625, 0.525390625, 0.33935546875,
|
|
293
|
+
-0.79443359375, 0.71630859375, 0.97998046875,
|
|
294
|
+
-0.175537109375, 0.97705078125, 1.705078125, 0.29638671875,
|
|
295
|
+
0.68359375, 0.54150390625, 0.435791015625, 0.99755859375,
|
|
296
|
+
-0.369140625, 1.009765625, -0.140380859375, 0.426513671875,
|
|
297
|
+
0.189697265625, 1.8193359375, 1.1201171875, -0.5009765625,
|
|
298
|
+
-0.331298828125, 0.759765625, -0.09442138671875, 0.74609375,
|
|
299
|
+
-1.947265625, 1.3544921875, -3.935546875, 2.544921875,
|
|
300
|
+
1.359375, 0.1363525390625, 0.79296875, 0.79931640625,
|
|
301
|
+
-0.3466796875, 1.1396484375, -0.33447265625, 2.0078125,
|
|
302
|
+
-0.241455078125, 0.6318359375, 0.365234375, 0.296142578125,
|
|
303
|
+
0.830078125, 1.0458984375, 0.5830078125, 0.61572265625,
|
|
304
|
+
14.0703125, -2.0078125, -0.381591796875, 1.228515625,
|
|
305
|
+
0.08282470703125, -0.67822265625, -0.04339599609375,
|
|
306
|
+
0.397216796875, 0.1656494140625, 0.137451171875,
|
|
307
|
+
0.244873046875, 1.1611328125, -1.3818359375, 0.8447265625,
|
|
308
|
+
1.171875, 0.36328125, 0.252685546875, 0.1197509765625,
|
|
309
|
+
0.232177734375, -0.020172119140625, 0.64404296875,
|
|
310
|
+
-0.01100921630859375, -1.9267578125, 0.222412109375,
|
|
311
|
+
0.56005859375, 1.3046875, 1.1630859375, 1.197265625,
|
|
312
|
+
1.02734375, 1.6806640625, -0.043731689453125, 1.4697265625,
|
|
313
|
+
0.81201171875, 1.5390625, 1.240234375, -0.7353515625,
|
|
314
|
+
1.828125, 1.115234375, 1.931640625, -0.517578125,
|
|
315
|
+
0.77880859375, 1.0546875, 0.95361328125, 3.42578125,
|
|
316
|
+
0.0160369873046875, 0.875, 0.56005859375, 1.2421875,
|
|
317
|
+
1.986328125, 1.4814453125, 0.0948486328125, 1.115234375,
|
|
318
|
+
0.00665283203125, 2.09375, 0.3544921875, -0.52783203125,
|
|
319
|
+
1.2099609375, 0.45068359375, 0.65625, 0.1112060546875,
|
|
320
|
+
1.0751953125, -0.9521484375, -0.30029296875, 1.4462890625,
|
|
321
|
+
2.046875, 3.212890625, 1.68359375, 1.07421875,
|
|
322
|
+
-0.5263671875, 0.74560546875, 1.37890625, 0.15283203125,
|
|
323
|
+
0.2440185546875, 0.62646484375, -0.1280517578125,
|
|
324
|
+
0.7646484375, -0.515625, -0.35693359375, 1.2958984375,
|
|
325
|
+
0.96923828125, 0.58935546875, 1.3701171875, 1.0673828125,
|
|
326
|
+
0.2337646484375, 0.93115234375, 0.66357421875, 6.0,
|
|
327
|
+
1.1025390625, -0.51708984375, -0.38330078125, 0.7197265625,
|
|
328
|
+
0.246826171875, -0.45166015625, 1.9521484375, 0.5546875,
|
|
329
|
+
0.08807373046875, 0.18505859375, 0.8857421875,
|
|
330
|
+
-0.57177734375, 0.251708984375, 0.234375, 2.57421875,
|
|
331
|
+
0.9599609375, 0.5029296875, 0.10382080078125,
|
|
332
|
+
0.08331298828125, 0.66748046875, -0.349609375, 1.287109375,
|
|
333
|
+
0.259765625, 2.015625, 2.828125, -0.3095703125,
|
|
334
|
+
-0.164306640625, -0.3408203125, 0.486572265625,
|
|
335
|
+
0.8466796875, 1.9130859375, 0.09088134765625, 0.66552734375,
|
|
336
|
+
0.00972747802734375, -0.83154296875, 1.755859375,
|
|
337
|
+
0.654296875, 0.173828125, 0.27587890625, -0.47607421875,
|
|
338
|
+
-0.264404296875, 0.7529296875, 0.6533203125, 0.7275390625,
|
|
339
|
+
0.499755859375, 0.833984375, -0.44775390625, -0.05078125,
|
|
340
|
+
-0.454833984375, 0.75439453125, 0.68505859375,
|
|
341
|
+
0.210693359375, -0.283935546875, -0.53564453125,
|
|
342
|
+
0.96826171875, 0.861328125, -3.33984375, -0.26171875,
|
|
343
|
+
0.77734375, 0.26513671875, -0.14111328125, -0.042236328125,
|
|
344
|
+
-0.84814453125, 0.2137451171875, 0.94921875, 0.65185546875,
|
|
345
|
+
-0.5380859375, 0.1529541015625, -0.360595703125,
|
|
346
|
+
-0.0333251953125, -0.69189453125, 0.8974609375, 0.7109375,
|
|
347
|
+
0.81494140625, -0.259521484375, 1.1904296875, 0.62158203125,
|
|
348
|
+
1.345703125, 0.89404296875, 0.70556640625, 1.0673828125,
|
|
349
|
+
1.392578125, 0.5068359375, 0.962890625, 0.736328125,
|
|
350
|
+
1.55078125, 0.50390625, -0.398681640625, 2.361328125,
|
|
351
|
+
0.345947265625, -0.61962890625, 0.330078125, 0.75439453125,
|
|
352
|
+
-0.673828125, -0.2379150390625, 1.5673828125, 1.369140625,
|
|
353
|
+
0.1119384765625, -0.1834716796875, 1.4599609375,
|
|
354
|
+
-0.77587890625, 0.5556640625, 0.09954833984375,
|
|
355
|
+
0.0285186767578125, 0.58935546875, -0.501953125,
|
|
356
|
+
0.212890625, 0.02679443359375, 0.1715087890625,
|
|
357
|
+
0.03466796875, -0.564453125, 2.029296875, 2.45703125,
|
|
358
|
+
-0.72216796875, 2.138671875, 0.50830078125,
|
|
359
|
+
-0.09356689453125, 0.230224609375, 1.6943359375,
|
|
360
|
+
1.5126953125, 0.39453125, 0.411376953125, 1.07421875,
|
|
361
|
+
-0.8046875, 0.51416015625, 0.2271728515625, -0.283447265625,
|
|
362
|
+
0.38427734375, 0.73388671875, 0.6962890625, 1.4990234375,
|
|
363
|
+
0.02813720703125, 0.40478515625, 1.2451171875, 1.1162109375,
|
|
364
|
+
-5.5703125, 0.76171875, 0.322021484375, 1.0361328125,
|
|
365
|
+
1.197265625, 0.1163330078125, 0.2425537109375, 1.5595703125,
|
|
366
|
+
1.5791015625, -0.0921630859375, 0.484619140625,
|
|
367
|
+
1.9052734375, 5.31640625, 1.6337890625, 0.95947265625,
|
|
368
|
+
-0.1751708984375, 0.466552734375, 0.8330078125, 1.03125,
|
|
369
|
+
0.2044677734375, 0.31298828125, -1.1220703125, 0.5517578125,
|
|
370
|
+
0.93505859375, 0.45166015625, 1.951171875, 0.65478515625,
|
|
371
|
+
1.30859375, 1.0859375, 0.56494140625, 2.322265625,
|
|
372
|
+
0.242919921875, 1.81640625, -0.469970703125, -0.841796875,
|
|
373
|
+
0.90869140625, 1.5361328125, 0.923828125, 1.0595703125,
|
|
374
|
+
0.356689453125, -0.46142578125, 2.134765625, 1.3037109375,
|
|
375
|
+
-0.32373046875, -9.2265625, 0.4521484375, 0.88037109375,
|
|
376
|
+
-0.53955078125, 0.96484375, 0.7705078125, 0.84521484375,
|
|
377
|
+
1.580078125, -0.1448974609375, 0.7607421875, 1.0166015625,
|
|
378
|
+
-0.086669921875, 1.611328125, 0.05938720703125, 0.5078125,
|
|
379
|
+
0.8427734375, 2.431640625, 0.66357421875, 3.203125,
|
|
380
|
+
0.132080078125, 0.461181640625, 0.779296875, 1.9482421875,
|
|
381
|
+
1.8720703125, 0.845703125, -1.3837890625, -0.138916015625,
|
|
382
|
+
0.35546875, 0.2457275390625, 0.75341796875, 1.828125,
|
|
383
|
+
1.4169921875, 0.60791015625, 1.0068359375, 1.109375,
|
|
384
|
+
0.484130859375, -0.302001953125, 0.4951171875, 0.802734375,
|
|
385
|
+
1.9482421875, 0.916015625, 0.1646728515625, 2.599609375,
|
|
386
|
+
1.7177734375, -0.2374267578125, 0.98046875, 0.39306640625,
|
|
387
|
+
-1.1396484375, 1.6533203125, 0.375244140625], "scores":
|
|
388
|
+
[0.09906005859375, 0.12213134765625, 0.05035400390625,
|
|
389
|
+
0.16552734375, 0.0037384033203125, 0.010101318359375,
|
|
390
|
+
0.058197021484375, 0.10552978515625, 0.1141357421875,
|
|
391
|
+
0.115234375, 0.00444793701171875, 0.00812530517578125,
|
|
392
|
+
0.0343017578125, 0.009002685546875, 0.087158203125,
|
|
393
|
+
0.00818634033203125, 0.003238677978515625, 0.024169921875,
|
|
394
|
+
0.00702667236328125, 0.00936126708984375,
|
|
395
|
+
0.00632476806640625, 0.0293731689453125, 0.01800537109375,
|
|
396
|
+
0.0088348388671875, 0.013397216796875, 0.02557373046875,
|
|
397
|
+
0.12109375, 0.004413604736328125, 0.016571044921875,
|
|
398
|
+
0.00274658203125, 0.2142333984375, 0.29638671875,
|
|
399
|
+
0.16015625, 0.007843017578125, 0.007160186767578125,
|
|
400
|
+
0.00508880615234375, 0.054229736328125, 0.048736572265625,
|
|
401
|
+
0.026397705078125, 0.0265350341796875, 0.051361083984375,
|
|
402
|
+
0.018310546875, 0.00974273681640625, 0.0218963623046875,
|
|
403
|
+
0.216064453125, 0.021728515625, 0.0173797607421875,
|
|
404
|
+
0.004520416259765625], "stoks": [52, 52, 52, 52, 52, 41, 41,
|
|
405
|
+
374, 303, 303, 303, 427], "time": {"begin_ms": 640,
|
|
406
|
+
"end_ms": 1140}}]}
|
|
407
|
+
- id: 7645a0d1-2e64-410d-83a8-b96040432e9a
|
|
408
|
+
chat_id: 470a49f6-1dec-4afe-8b61-035d3b2d63b0
|
|
409
|
+
timestamp: 1716244957031
|
|
410
|
+
role: AGENT
|
|
411
|
+
type: AGENT_MESSAGE
|
|
412
|
+
message_text: Hello!
|
|
413
|
+
emotion_features: >-
|
|
414
|
+
{"Admiration": 0.044921875, "Adoration": 0.0253753662109375,
|
|
415
|
+
"Aesthetic Appreciation": 0.03265380859375, "Amusement":
|
|
416
|
+
0.118408203125, "Anger": 0.06719970703125, "Anxiety":
|
|
417
|
+
0.0411376953125, "Awe": 0.03802490234375, "Awkwardness":
|
|
418
|
+
0.056549072265625, "Boredom": 0.04217529296875, "Calmness":
|
|
419
|
+
0.08709716796875, "Concentration": 0.070556640625,
|
|
420
|
+
"Confusion": 0.06964111328125, "Contemplation":
|
|
421
|
+
0.0343017578125, "Contempt": 0.037689208984375,
|
|
422
|
+
"Contentment": 0.059417724609375, "Craving":
|
|
423
|
+
0.01132965087890625, "Desire": 0.01406097412109375,
|
|
424
|
+
"Determination": 0.1143798828125, "Disappointment":
|
|
425
|
+
0.051177978515625, "Disgust": 0.028594970703125, "Distress":
|
|
426
|
+
0.054901123046875, "Doubt": 0.04638671875, "Ecstasy":
|
|
427
|
+
0.0258026123046875, "Embarrassment": 0.0222015380859375,
|
|
428
|
+
"Empathic Pain": 0.015777587890625, "Entrancement":
|
|
429
|
+
0.0160980224609375, "Envy": 0.0163421630859375,
|
|
430
|
+
"Excitement": 0.129638671875, "Fear": 0.03125, "Guilt":
|
|
431
|
+
0.01483917236328125, "Horror": 0.0194549560546875,
|
|
432
|
+
"Interest": 0.1341552734375, "Joy": 0.0738525390625, "Love":
|
|
433
|
+
0.0216522216796875, "Nostalgia": 0.0210418701171875, "Pain":
|
|
434
|
+
0.020721435546875, "Pride": 0.05499267578125, "Realization":
|
|
435
|
+
0.0728759765625, "Relief": 0.04052734375, "Romance":
|
|
436
|
+
0.0129241943359375, "Sadness": 0.0254669189453125,
|
|
437
|
+
"Satisfaction": 0.07159423828125, "Shame": 0.01495361328125,
|
|
438
|
+
"Surprise (negative)": 0.05560302734375, "Surprise
|
|
439
|
+
(positive)": 0.07965087890625, "Sympathy":
|
|
440
|
+
0.022247314453125, "Tiredness": 0.0194549560546875,
|
|
441
|
+
"Triumph": 0.04107666015625}
|
|
442
|
+
metadata: ''
|