@amigo-ai/sdk 0.32.0 → 0.34.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.
|
@@ -2978,19 +2978,6 @@ export interface components {
|
|
|
2978
2978
|
conversation_triggers: string[];
|
|
2979
2979
|
action: components["schemas"]["amigo_lib__mongo__collections__dynamic_behavior_set_version__Action"];
|
|
2980
2980
|
};
|
|
2981
|
-
/**
|
|
2982
|
-
* EmitEventSideEffect
|
|
2983
|
-
* @description A side effect that emits a special `CurrentAgentActionEvent` to the user.
|
|
2984
|
-
*/
|
|
2985
|
-
EmitEventSideEffect: {
|
|
2986
|
-
/**
|
|
2987
|
-
* @description discriminator enum property added by openapi-typescript
|
|
2988
|
-
* @enum {string}
|
|
2989
|
-
*/
|
|
2990
|
-
type: "emit-event";
|
|
2991
|
-
/** Event Name */
|
|
2992
|
-
event_name: string;
|
|
2993
|
-
};
|
|
2994
2981
|
/**
|
|
2995
2982
|
* EndSessionEvent
|
|
2996
2983
|
* @description This event is deprecated.
|
|
@@ -4465,37 +4452,6 @@ export interface components {
|
|
|
4465
4452
|
*/
|
|
4466
4453
|
type: "select-dynamic-behavior-vector-generated";
|
|
4467
4454
|
};
|
|
4468
|
-
/**
|
|
4469
|
-
* SendEmailSideEffect
|
|
4470
|
-
* @description A side effect that sends an email to the user.
|
|
4471
|
-
*/
|
|
4472
|
-
SendEmailSideEffect: {
|
|
4473
|
-
/**
|
|
4474
|
-
* @description discriminator enum property added by openapi-typescript
|
|
4475
|
-
* @enum {string}
|
|
4476
|
-
*/
|
|
4477
|
-
type: "send-email";
|
|
4478
|
-
/**
|
|
4479
|
-
* Subject
|
|
4480
|
-
* @description The subject of the email.
|
|
4481
|
-
*/
|
|
4482
|
-
subject: string;
|
|
4483
|
-
/**
|
|
4484
|
-
* Body Template Text
|
|
4485
|
-
* @description The text of the Jinja2 template of the email body.
|
|
4486
|
-
*/
|
|
4487
|
-
body_template_text: string;
|
|
4488
|
-
/**
|
|
4489
|
-
* Recipients
|
|
4490
|
-
* @description A list of email addresses to send the email to.
|
|
4491
|
-
*/
|
|
4492
|
-
recipients: string[];
|
|
4493
|
-
/**
|
|
4494
|
-
* Sender
|
|
4495
|
-
* @description The email address of the sender. Must be an email address that ends with `@amigo.ai`
|
|
4496
|
-
*/
|
|
4497
|
-
sender: string;
|
|
4498
|
-
};
|
|
4499
4455
|
/** ServiceHierarchicalStateMachineInstance */
|
|
4500
4456
|
ServiceHierarchicalStateMachineInstance: {
|
|
4501
4457
|
/**
|
|
@@ -4622,58 +4578,6 @@ export interface components {
|
|
|
4622
4578
|
*/
|
|
4623
4579
|
tags: components["schemas"]["Tag"][];
|
|
4624
4580
|
};
|
|
4625
|
-
SideEffect: components["schemas"]["SendEmailSideEffect"] | components["schemas"]["EmitEventSideEffect"];
|
|
4626
|
-
/**
|
|
4627
|
-
* SideEffectState
|
|
4628
|
-
* @description A passthrough state in which the agent performs some side effect.
|
|
4629
|
-
*/
|
|
4630
|
-
SideEffectState: {
|
|
4631
|
-
/**
|
|
4632
|
-
* @description discriminator enum property added by openapi-typescript
|
|
4633
|
-
* @enum {string}
|
|
4634
|
-
*/
|
|
4635
|
-
type: "side-effect";
|
|
4636
|
-
/** Next State */
|
|
4637
|
-
next_state: string | [
|
|
4638
|
-
string,
|
|
4639
|
-
string
|
|
4640
|
-
];
|
|
4641
|
-
side_effect: components["schemas"]["SideEffect"];
|
|
4642
|
-
};
|
|
4643
|
-
/** SideEffectStateTransitionLog */
|
|
4644
|
-
SideEffectStateTransitionLog: {
|
|
4645
|
-
/**
|
|
4646
|
-
* Previous State
|
|
4647
|
-
* @description Name of the previous state to transition from.
|
|
4648
|
-
*/
|
|
4649
|
-
previous_state: string;
|
|
4650
|
-
/**
|
|
4651
|
-
* Previous Service Hierarchical State Machine Version Info
|
|
4652
|
-
* @description The identifier of the service hierarchical state machine that the previous state is in.
|
|
4653
|
-
*/
|
|
4654
|
-
previous_service_hierarchical_state_machine_version_info: [
|
|
4655
|
-
string,
|
|
4656
|
-
number
|
|
4657
|
-
];
|
|
4658
|
-
/**
|
|
4659
|
-
* Next State
|
|
4660
|
-
* @description Name of the next state to transition to.
|
|
4661
|
-
*/
|
|
4662
|
-
next_state: string;
|
|
4663
|
-
/**
|
|
4664
|
-
* Next Service Hierarchical State Machine Version Info
|
|
4665
|
-
* @description The identifier of the service hierarchical state machine that the next state is in.
|
|
4666
|
-
*/
|
|
4667
|
-
next_service_hierarchical_state_machine_version_info: [
|
|
4668
|
-
string,
|
|
4669
|
-
number
|
|
4670
|
-
];
|
|
4671
|
-
/**
|
|
4672
|
-
* @description The type of the state transition log, which is the type of the state we're transitioning from. (enum property replaced by openapi-typescript)
|
|
4673
|
-
* @enum {string}
|
|
4674
|
-
*/
|
|
4675
|
-
type: "side-effect";
|
|
4676
|
-
};
|
|
4677
4581
|
/** SimulationConversationInvocationSource */
|
|
4678
4582
|
SimulationConversationInvocationSource: {
|
|
4679
4583
|
/**
|
|
@@ -5203,7 +5107,7 @@ export interface components {
|
|
|
5203
5107
|
/** @description The user who created the unit test set run. */
|
|
5204
5108
|
creator: components["schemas"]["amigo_lib__mongo__collections__simulation_unit_test_set_run__SimulationUnitTestSetRun__UserInfo"];
|
|
5205
5109
|
};
|
|
5206
|
-
State: components["schemas"]["ActionState-Output"] | components["schemas"]["DecisionState-Output"] | components["schemas"]["RecallState-Output"] | components["schemas"]["AnnotationState-Output"] | components["schemas"]["ReflectionState-Output"]
|
|
5110
|
+
State: components["schemas"]["ActionState-Output"] | components["schemas"]["DecisionState-Output"] | components["schemas"]["RecallState-Output"] | components["schemas"]["AnnotationState-Output"] | components["schemas"]["ReflectionState-Output"];
|
|
5207
5111
|
/** StateMachineInstance */
|
|
5208
5112
|
StateMachineInstance: {
|
|
5209
5113
|
/**
|
|
@@ -5259,7 +5163,7 @@ export interface components {
|
|
|
5259
5163
|
*/
|
|
5260
5164
|
tool_call_round_index: number;
|
|
5261
5165
|
};
|
|
5262
|
-
StateTransitionLog: components["schemas"]["ActionStateTransitionLog"] | components["schemas"]["DecisionStateTransitionLog"] | components["schemas"]["RecallStateTransitionLog"] | components["schemas"]["JumpbackStateTransitionLog"] | components["schemas"]["AnnotationStateTransitionLog"] | components["schemas"]["ReflectionStateTransitionLog"]
|
|
5166
|
+
StateTransitionLog: components["schemas"]["ActionStateTransitionLog"] | components["schemas"]["DecisionStateTransitionLog"] | components["schemas"]["RecallStateTransitionLog"] | components["schemas"]["JumpbackStateTransitionLog"] | components["schemas"]["AnnotationStateTransitionLog"] | components["schemas"]["ReflectionStateTransitionLog"];
|
|
5263
5167
|
"StrippedNonemptyString_A-Z______": string;
|
|
5264
5168
|
StrippedNonemptyString___w__s_____: string;
|
|
5265
5169
|
"StrippedNonemptyString_a-z-______": string;
|
|
@@ -6039,9 +5943,8 @@ export interface components {
|
|
|
6039
5943
|
/**
|
|
6040
5944
|
* Voice Id
|
|
6041
5945
|
* @description The Elevenlabs voice ID for this agent.
|
|
6042
|
-
* @default 4rgS68aOYqDjxDQQVXXK
|
|
6043
5946
|
*/
|
|
6044
|
-
voice_id
|
|
5947
|
+
voice_id: string;
|
|
6045
5948
|
/**
|
|
6046
5949
|
* Stability
|
|
6047
5950
|
* @default 0.35
|
|
@@ -6063,9 +5966,8 @@ export interface components {
|
|
|
6063
5966
|
/**
|
|
6064
5967
|
* Voice Id
|
|
6065
5968
|
* @description The Elevenlabs voice ID for this agent.
|
|
6066
|
-
* @default 4rgS68aOYqDjxDQQVXXK
|
|
6067
5969
|
*/
|
|
6068
|
-
voice_id
|
|
5970
|
+
voice_id: string;
|
|
6069
5971
|
/**
|
|
6070
5972
|
* Stability
|
|
6071
5973
|
* @description How stable the voice is and the randomness between each generation. The higher the more stable the voice is.
|
|
@@ -8651,11 +8553,6 @@ export interface components {
|
|
|
8651
8553
|
* @description A list of additional context to update. If `null`, the context is not modified.
|
|
8652
8554
|
*/
|
|
8653
8555
|
additional_context?: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"][] | null;
|
|
8654
|
-
/**
|
|
8655
|
-
* Enable Azure Devops Access
|
|
8656
|
-
* @description Whether to enable Azure DevOps access for this user to enable tool development. If `null`, it is not modified.
|
|
8657
|
-
*/
|
|
8658
|
-
enable_azure_devops_access?: boolean | null;
|
|
8659
8556
|
};
|
|
8660
8557
|
/** Request */
|
|
8661
8558
|
webhook_destination__create_webhook_destination__Request: {
|