@amigo-ai/sdk 0.19.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 The format of the audio response, if `response_format` is set to `voice`. */
|
|
10242
|
-
audio_format?: ("mp3" | "pcm") | null;
|
|
10243
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 `^$`. */
|
|
10244
10242
|
current_agent_action_type?: string;
|
|
10243
|
+
/** @description The format of the audio response, if `response_format` is set to `voice`. */
|
|
10244
|
+
audio_format?: ("mp3" | "pcm") | null;
|
|
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 An RE2 style regex pattern 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. */
|