@amigo-ai/sdk 0.18.0 → 0.20.0
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.
|
@@ -10238,10 +10238,10 @@ export interface operations {
|
|
|
10238
10238
|
query: {
|
|
10239
10239
|
/** @description The format of the response that will be sent to the user. */
|
|
10240
10240
|
response_format: "text" | "voice";
|
|
10241
|
+
/** @description A regex for filtering the type of the current agent action to return. By default, all are returned. If you don't want to receive any events, set this to a regex that matches nothing, for instance `^$`. */
|
|
10242
|
+
current_agent_action_type?: string;
|
|
10241
10243
|
/** @description The format of the audio response, if `response_format` is set to `voice`. */
|
|
10242
10244
|
audio_format?: ("mp3" | "pcm") | null;
|
|
10243
|
-
/** @description A regex for filtering the type of the current agent action to return. By default, all are returned. If you don't want to receive any events, set this to a regex that matches nothing, for instance `(?!)`. */
|
|
10244
|
-
current_agent_action_type?: string;
|
|
10245
10245
|
};
|
|
10246
10246
|
header?: {
|
|
10247
10247
|
/** @description The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. */
|
|
@@ -10652,12 +10652,12 @@ export interface operations {
|
|
|
10652
10652
|
request_format: "text" | "voice";
|
|
10653
10653
|
/** @description The format of the response that will be sent to the user. */
|
|
10654
10654
|
response_format: "text" | "voice";
|
|
10655
|
+
/** @description A regex for filtering the type of the current agent action to return. By default, all are returned. If you don't want to receive any events, set this to a regex that matches nothing, for instance `^$`. */
|
|
10656
|
+
current_agent_action_type?: string;
|
|
10655
10657
|
/** @description Configuration for the user message audio. This is only required if `request_format` is set to `voice`. */
|
|
10656
10658
|
request_audio_config?: components["schemas"]["UserMessageAudioConfig"] | null;
|
|
10657
10659
|
/** @description The format of the audio response, if `response_format` is set to `voice`. */
|
|
10658
10660
|
audio_format?: ("mp3" | "pcm") | null;
|
|
10659
|
-
/** @description A regex for filtering the type of the current agent action to return. By default, all are returned. If you don't want to receive any events, set this to a regex that matches nothing, for instance `(?!)`. */
|
|
10660
|
-
current_agent_action_type?: string;
|
|
10661
10661
|
};
|
|
10662
10662
|
header?: {
|
|
10663
10663
|
/** @description The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database. */
|
|
@@ -10685,7 +10685,7 @@ export interface operations {
|
|
|
10685
10685
|
"application/x-ndjson": components["schemas"]["conversation__interact_with_conversation__Response"];
|
|
10686
10686
|
};
|
|
10687
10687
|
};
|
|
10688
|
-
/** @description The user message is empty, or the preferred language does not support voice transcription or response, or the `audio_format` field is not set when voice output is requested. */
|
|
10688
|
+
/** @description The user message is empty, or the preferred language does not support voice transcription or response, or the `audio_format` field is not set when voice output is requested, or the timestamps for external event messages are not in the past, or the timestamps for external event messages are inconsistent with the conversation. */
|
|
10689
10689
|
400: {
|
|
10690
10690
|
headers: {
|
|
10691
10691
|
[name: string]: unknown;
|