@amigo-ai/sdk 0.46.0 → 0.47.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.
|
@@ -2470,7 +2470,7 @@ export interface components {
|
|
|
2470
2470
|
*/
|
|
2471
2471
|
previously_started_event: unknown;
|
|
2472
2472
|
};
|
|
2473
|
-
AgentFrameworkInvocationMetadata: components["schemas"]["StateTransitionInvocationMetadata"] | components["schemas"]["EngageUserInvocationMetadata"];
|
|
2473
|
+
AgentFrameworkInvocationMetadata: components["schemas"]["StateTransitionInvocationMetadata"] | components["schemas"]["EngageUserInvocationMetadata"] | components["schemas"]["ToolCallStateInvocationMetadata"];
|
|
2474
2474
|
/** AnnotationState */
|
|
2475
2475
|
"AnnotationState-Input": {
|
|
2476
2476
|
/**
|
|
@@ -3256,6 +3256,16 @@ export interface components {
|
|
|
3256
3256
|
* @constant
|
|
3257
3257
|
*/
|
|
3258
3258
|
type?: "designated-tool-call-params-generated";
|
|
3259
|
+
/**
|
|
3260
|
+
* Tool Id
|
|
3261
|
+
* @description The ID of the tool being called.
|
|
3262
|
+
*/
|
|
3263
|
+
tool_id: string;
|
|
3264
|
+
/**
|
|
3265
|
+
* Tool Version
|
|
3266
|
+
* @description The version of the tool being called.
|
|
3267
|
+
*/
|
|
3268
|
+
tool_version: string;
|
|
3259
3269
|
/**
|
|
3260
3270
|
* Tool Call Params
|
|
3261
3271
|
* @description The generated tool call parameters.
|
|
@@ -4024,6 +4034,16 @@ export interface components {
|
|
|
4024
4034
|
* @constant
|
|
4025
4035
|
*/
|
|
4026
4036
|
type?: "navigate-state-machine-tool-call-state-tool-output-available";
|
|
4037
|
+
/**
|
|
4038
|
+
* Tool Id
|
|
4039
|
+
* @description The ID of the tool being called.
|
|
4040
|
+
*/
|
|
4041
|
+
tool_id: string;
|
|
4042
|
+
/**
|
|
4043
|
+
* Tool Version
|
|
4044
|
+
* @description The version of the tool being called.
|
|
4045
|
+
*/
|
|
4046
|
+
tool_version: string;
|
|
4027
4047
|
/**
|
|
4028
4048
|
* Tool Output
|
|
4029
4049
|
* @description The tool output.
|
|
@@ -5625,6 +5645,27 @@ export interface components {
|
|
|
5625
5645
|
*/
|
|
5626
5646
|
tool_call_specs: components["schemas"]["ToolCallSpec-Output"][];
|
|
5627
5647
|
};
|
|
5648
|
+
/** ToolCallStateInvocationMetadata */
|
|
5649
|
+
ToolCallStateInvocationMetadata: {
|
|
5650
|
+
/**
|
|
5651
|
+
* @description discriminator enum property added by openapi-typescript
|
|
5652
|
+
* @enum {string}
|
|
5653
|
+
*/
|
|
5654
|
+
type: "tool-call-state";
|
|
5655
|
+
/**
|
|
5656
|
+
* Current State Machine And Version
|
|
5657
|
+
* @description The ID and version of the state machine that is currently being executed.
|
|
5658
|
+
*/
|
|
5659
|
+
current_state_machine_and_version: [
|
|
5660
|
+
string,
|
|
5661
|
+
number
|
|
5662
|
+
];
|
|
5663
|
+
/**
|
|
5664
|
+
* State Name
|
|
5665
|
+
* @description The name of the state during which the tool was invoked.
|
|
5666
|
+
*/
|
|
5667
|
+
state_name: string;
|
|
5668
|
+
};
|
|
5628
5669
|
/** ToolCallStateTransitionLog */
|
|
5629
5670
|
ToolCallStateTransitionLog: {
|
|
5630
5671
|
/**
|