@trii/types 2.10.597 → 2.10.598
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.
|
@@ -92,7 +92,7 @@ export interface IWorkflowMessage {
|
|
|
92
92
|
executionId?: string | null;
|
|
93
93
|
}
|
|
94
94
|
export interface IFlowMessageContent {
|
|
95
|
-
type: '
|
|
95
|
+
type: 'message' | 'schema' | 'tool';
|
|
96
96
|
text?: string;
|
|
97
97
|
/**For audio transcription or OCR processing */
|
|
98
98
|
transcription?: string;
|
|
@@ -100,6 +100,7 @@ export interface IFlowMessageContent {
|
|
|
100
100
|
image_url?: string;
|
|
101
101
|
audio_url?: string;
|
|
102
102
|
file_url?: string;
|
|
103
|
+
isMessageSended?: boolean | false;
|
|
103
104
|
/**Tool call related information */
|
|
104
105
|
toolCallId?: string;
|
|
105
106
|
toolName?: string;
|
|
@@ -108,8 +109,11 @@ export interface IFlowMessageContent {
|
|
|
108
109
|
toolStatus?: NodeStatus;
|
|
109
110
|
toolTransferToOtherAgent?: boolean | false;
|
|
110
111
|
toolNextNodeId?: string | null;
|
|
112
|
+
schema?: string;
|
|
113
|
+
isPlanOutput?: boolean | false;
|
|
114
|
+
isPlanExecution?: boolean | false;
|
|
115
|
+
workersOutput?: string;
|
|
111
116
|
isPartial?: boolean | false;
|
|
112
|
-
isMessageSended?: boolean | false;
|
|
113
117
|
/**related to messages module */
|
|
114
118
|
messageId?: string;
|
|
115
119
|
messageShardKey?: string;
|