@amigo-ai/sdk 0.42.0 → 0.43.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.
|
@@ -6051,21 +6051,12 @@ export interface components {
|
|
|
6051
6051
|
* @description The Elevenlabs voice ID for this agent.
|
|
6052
6052
|
*/
|
|
6053
6053
|
voice_id: string;
|
|
6054
|
-
/**
|
|
6055
|
-
|
|
6056
|
-
|
|
6057
|
-
|
|
6058
|
-
|
|
6059
|
-
|
|
6060
|
-
* Similarity Boost
|
|
6061
|
-
* @default 0.9
|
|
6062
|
-
*/
|
|
6063
|
-
similarity_boost?: number;
|
|
6064
|
-
/**
|
|
6065
|
-
* Style
|
|
6066
|
-
* @default 0
|
|
6067
|
-
*/
|
|
6068
|
-
style?: number;
|
|
6054
|
+
/** Stability */
|
|
6055
|
+
stability: number;
|
|
6056
|
+
/** Similarity Boost */
|
|
6057
|
+
similarity_boost: number;
|
|
6058
|
+
/** Style */
|
|
6059
|
+
style: number;
|
|
6069
6060
|
};
|
|
6070
6061
|
/** VoiceConfig */
|
|
6071
6062
|
"VoiceConfig-Output": {
|
|
@@ -6077,22 +6068,19 @@ export interface components {
|
|
|
6077
6068
|
/**
|
|
6078
6069
|
* Stability
|
|
6079
6070
|
* @description How stable the voice is and the randomness between each generation. The higher the more stable the voice is.
|
|
6080
|
-
* @default 0.35
|
|
6081
6071
|
*/
|
|
6082
|
-
stability
|
|
6072
|
+
stability: number;
|
|
6083
6073
|
/**
|
|
6084
6074
|
* Similarity Boost
|
|
6085
6075
|
* @description How closely the AI should adhere to the original voice when attempting to replicate it. The higher the more similar the generated audio is to the
|
|
6086
6076
|
* original voice.
|
|
6087
|
-
* @default 0.9
|
|
6088
6077
|
*/
|
|
6089
|
-
similarity_boost
|
|
6078
|
+
similarity_boost: number;
|
|
6090
6079
|
/**
|
|
6091
6080
|
* Style
|
|
6092
6081
|
* @description How much to exaggerate the original voice styles of the speaker. The higher the more exaggeration there is.
|
|
6093
|
-
* @default 0
|
|
6094
6082
|
*/
|
|
6095
|
-
style
|
|
6083
|
+
style: number;
|
|
6096
6084
|
};
|
|
6097
6085
|
/** WebhookDeliveryInstance */
|
|
6098
6086
|
WebhookDeliveryInstance: {
|
|
@@ -6902,13 +6890,8 @@ export interface components {
|
|
|
6902
6890
|
* @description A list of descriptions that illustrate the communication styles of this agent.
|
|
6903
6891
|
*/
|
|
6904
6892
|
communication_patterns?: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"][] | null;
|
|
6905
|
-
/**
|
|
6906
|
-
|
|
6907
|
-
* @description The Elevenlabs voice config for the agent. If set to null, the default setting is used. If not set or set to an empty object, the setting
|
|
6908
|
-
* on the existing version is used.
|
|
6909
|
-
* @default {}
|
|
6910
|
-
*/
|
|
6911
|
-
voice_config?: components["schemas"]["VoiceConfig-Input"] | components["schemas"]["_NotSet"] | null;
|
|
6893
|
+
/** @description The Elevenlabs voice config for the agent. If set to null, it is not updated. */
|
|
6894
|
+
voice_config?: components["schemas"]["VoiceConfig-Input"] | null;
|
|
6912
6895
|
};
|
|
6913
6896
|
/** Response */
|
|
6914
6897
|
organization__create_agent_version__Response: {
|
|
@@ -7184,7 +7167,7 @@ export interface components {
|
|
|
7184
7167
|
*/
|
|
7185
7168
|
version: number;
|
|
7186
7169
|
/** @description The voice configuration of the agent. */
|
|
7187
|
-
voice_config: components["schemas"]["VoiceConfig-Output"]
|
|
7170
|
+
voice_config: components["schemas"]["VoiceConfig-Output"];
|
|
7188
7171
|
/**
|
|
7189
7172
|
* Initials
|
|
7190
7173
|
* @description The initials of the agent.
|