@amigo-ai/sdk 0.37.0 → 0.39.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.
|
@@ -2330,8 +2330,6 @@ export interface components {
|
|
|
2330
2330
|
boundary_constraints: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"][];
|
|
2331
2331
|
/** Exit Conditions */
|
|
2332
2332
|
exit_conditions: components["schemas"]["ExitCondition-Input"][];
|
|
2333
|
-
/** Message Metadata */
|
|
2334
|
-
message_metadata: components["schemas"]["amigo_lib__pydantic__base_model__StrippedNonemptyString__1"][];
|
|
2335
2333
|
/** Action Tool Call Specs */
|
|
2336
2334
|
action_tool_call_specs: components["schemas"]["ToolCallSpec-Input"][];
|
|
2337
2335
|
/** Exit Condition Tool Call Specs */
|
|
@@ -2389,11 +2387,6 @@ export interface components {
|
|
|
2389
2387
|
* @description A list of exit conditions for this state that describes under what condition would the session be allowed to transition to another state.
|
|
2390
2388
|
*/
|
|
2391
2389
|
exit_conditions: components["schemas"]["ExitCondition-Output"][];
|
|
2392
|
-
/**
|
|
2393
|
-
* Message Metadata
|
|
2394
|
-
* @description A list of metadata to include in the agent message if the message is generated in this state.
|
|
2395
|
-
*/
|
|
2396
|
-
message_metadata: string[];
|
|
2397
2390
|
/**
|
|
2398
2391
|
* Action Tool Call Specs
|
|
2399
2392
|
* @description A list of tool calls that the agent can make in this state when executing an action.
|
|
@@ -3570,11 +3563,6 @@ export interface components {
|
|
|
3570
3563
|
format: components["schemas"]["Format"];
|
|
3571
3564
|
/** @description The type of the message. */
|
|
3572
3565
|
message_type: components["schemas"]["MessageType"];
|
|
3573
|
-
/**
|
|
3574
|
-
* Message Metadata
|
|
3575
|
-
* @description The metadata associated with the message.
|
|
3576
|
-
*/
|
|
3577
|
-
message_metadata: string[];
|
|
3578
3566
|
};
|
|
3579
3567
|
/** @enum {string} */
|
|
3580
3568
|
MessageType: "user-message" | "agent-message" | "agent-inner-thought" | "external-event";
|
|
@@ -3981,11 +3969,6 @@ export interface components {
|
|
|
3981
3969
|
* PCM16 format.
|
|
3982
3970
|
*/
|
|
3983
3971
|
message: string;
|
|
3984
|
-
/**
|
|
3985
|
-
* Message Metadata
|
|
3986
|
-
* @description Metadata associated with this message.
|
|
3987
|
-
*/
|
|
3988
|
-
message_metadata: string[];
|
|
3989
3972
|
/**
|
|
3990
3973
|
* Transcript Alignment
|
|
3991
3974
|
* @description Transcript of the ongoing audio message and how they align with the audio, if the message is in audio format. Otherwise, it's `None`. This is an array of tuples, where each tuple contains
|
|
@@ -20,7 +20,6 @@ export declare class ConversationResource {
|
|
|
20
20
|
} | {
|
|
21
21
|
type: "new-message";
|
|
22
22
|
message: string;
|
|
23
|
-
message_metadata: string[];
|
|
24
23
|
transcript_alignment: [number, string][] | null;
|
|
25
24
|
stop: boolean;
|
|
26
25
|
sequence_number: number;
|
|
@@ -46,7 +45,6 @@ export declare class ConversationResource {
|
|
|
46
45
|
} | {
|
|
47
46
|
type: "new-message";
|
|
48
47
|
message: string;
|
|
49
|
-
message_metadata: string[];
|
|
50
48
|
transcript_alignment: [number, string][] | null;
|
|
51
49
|
stop: boolean;
|
|
52
50
|
sequence_number: number;
|